-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
42 lines (42 loc) · 1.48 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "@uirouter/sample-app-react",
"version": "1.0.0",
"description": "Architecture overview demo for UI-Router React",
"scripts": {
"clean": "rimraf docs",
"start": "NODE_ENV=development webpack-dev-server --host 0.0.0.0 --port 3000 --config webpack.config.js --history-api-fallback --content-base ./",
"build": "npm run clean && mkdirp docs && cp index.html docs/index.html && NODE_ENV=production webpack",
"test": "npm run build && cypress-runner run --path docs",
"test:open": "npm run build && cypress-runner open --path docs",
"gh-pages": "npm run build && git add docs && git commit -m 'update github pages' docs && git push"
},
"author": "",
"license": "MIT",
"dependencies": {
"@uirouter/react": "^1.0.7",
"@uirouter/visualizer": "^7.2.1",
"lodash": "^4.17.21",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"@babel/preset-react": "^7.14.5",
"@uirouter/cypress-runner": "^1.1.0",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.6.0",
"file-loader": "^6.2.0",
"postcss-load-config": "^2.1.2",
"postcss-loader": "^3.0.0",
"rimraf": "^3.0.2",
"style-loader": "^1.3.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
}
}