-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·69 lines (69 loc) · 2.32 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"version": "1.0.0",
"name": "asp.net",
"private": true,
"scripts": {
"prestart": "webpack --config webpack.config.vendor.js",
"start": "npm-run-all --parallel watch:js watch:dotnet",
"dotnet":
"cross-env ASPNETCORE_ENVIRONMENT=Development NODE_ENV=development dotnet run",
"build": "webpack --env.production --progress --hide-modules",
"watch:js": "webpack --env.development --watch",
"watch:dotnet":
"cross-env ASPNETCORE_ENVIRONMENT=Development NODE_ENV=development dotnet watch run",
"clean-dist": "npm run remove-dist && mkdir dist",
"remove-dist": "rimraf ./dist"
},
"dependencies": {
"axios": "0.17.0",
"classnames": "^2.2.5",
"material-ui": "^1.0.0-beta.18",
"material-ui-icons": "^1.0.0-beta.17",
"prop-types": "15.6.0",
"react": "16.0.0",
"react-dom": "16.0.0",
"react-redux": "5.0.6",
"react-router-dom": "4.2.2",
"react-router-redux": "5.0.0-alpha.8",
"react-tap-event-plugin": "^3.0.2",
"redux": "3.7.2",
"redux-form": "^7.1.2",
"redux-thunk": "2.2.0",
"history": "4.7.2",
"react-hot-loader": "^3.1.1"
},
"devDependencies": {
"aspnet-webpack": "^2.0.1",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-imports": "^1.4.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"cross-env": "5.1.0",
"css-loader": "0.28.7",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"eslint-watch": "3.1.3",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"node-sass": "^4.6.0",
"npm-run-all": "4.1.1",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"prettier-eslint": "^8.2.1",
"redux-devtools-extension": "^2.13.2",
"redux-form-website-template": "0.0.80",
"redux-immutable-state-invariant": "^2.1.0",
"sass-loader": "6.0.6",
"style-loader": "0.19.0",
"url-loader": "0.6.2",
"webpack": "3.8.1",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-hot-middleware": "^2.20.0"
}
}