-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·53 lines (53 loc) · 1.41 KB
/
package.json
File metadata and controls
executable file
·53 lines (53 loc) · 1.41 KB
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
{
"name": "react-cnode",
"version": "1.0.0",
"description": "a cnode project with react",
"main": "index.js",
"author": "izqcool",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --config webpack/dev.config.js --open --color --progress",
"build": "webpack --config webpack/prod.config.js --open --color --progress"
},
"dependencies": {
"autoprefixer": "^8.5.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"bluebird": "^3.5.1",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"font-awesome": "^4.7.0",
"lodash": "^4.17.10",
"node-sass": "^4.9.0",
"normalize.css": "^8.0.0",
"nprogress": "^0.2.0",
"postcss-loader": "^2.1.5",
"postcss-px-to-viewport": "^0.0.3",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-router-dom": "^4.2.2",
"style-loader": "^0.21.0",
"superagent": "^3.8.3",
"sass-loader": "^7.1.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^0.5.9",
"webpack-merge": "^4.1.2"
},
"devDependencies": {
"clean-webpack-plugin": "^0.1.19",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4"
},
"proxy": {
"^/api": {
"target": "https://cnodejs.org/api/v1",
"pathRewrite": {
"^/api": "/"
}
}
}
}