-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.19 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.19 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
{
"name": "react-css-module-starter",
"version": "1.0.0",
"description": "minimal react starter project with good dev ux",
"main": "index.js",
"repository": "git@github.com:rencire/react-css-module-starter",
"author": "Eric Ren <rene@ren.email>",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --progress --watch",
"start": "webpack-dev-server",
"build": "NODE_ENV=production webpack --config webpack.config.prod.js --progress"
},
"dependencies": {
"babel-plugin-react-css-modules": "^3.2.1",
"babel-polyfill": "^6.26.0",
"normalize.css": "^7.0.0",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.7",
"html-webpack-plugin": "^2.30.1",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.6",
"react-hot-loader": "next",
"style-loader": "^0.18.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1",
"yargs": "^8.0.2"
}
}