-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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": "demo",
"version": "1.0.0",
"description": "Universal usage example",
"main": "worker.js",
"scripts": {
"compile": "webpack",
"compile:watch": "webpack --watch",
"start": "node app/worker",
"test": "echo \"Error: no test specified\" && exit 1"
},
"config": {
"css": "[name]_[local]__[hash:base64:5]",
"port": 3000
},
"keywords": [
"css-modules"
],
"author": "Alexey Litvinov",
"license": "MIT",
"dependencies": {
"css-modules-require-hook": "next",
"express": "^4.14.0",
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"devDependencies": {
"autoprefixer": "^7.2.4",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"npm-install-webpack-plugin": "^4.0.4",
"postcss-font-magician": "^2.1.0",
"postcss-loader": "^2.0.10",
"style-loader": "^0.19.1",
"webpack": "^3.10.0"
}
}