forked from darquro/webpack_sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 977 Bytes
/
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
{
"name": "webpack_sample",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"build": "webpack && NODE_MINIFY=1 webpack",
"start": "webpack-dev-server",
"test": "NODE_PATH=$NODE_PATH:$PWD/src mocha"
},
"author": "darquro",
"license": "MIT",
"private": true,
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-power-assert": "^1.0.0",
"babel-register": "^6.24.1",
"concurrently": "^3.4.0",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.3.0",
"postcss-loader": "^1.3.3",
"postcss-smart-import": "^0.6.12",
"power-assert": "^1.4.2",
"precss": "^1.4.0",
"style-loader": "^0.16.1",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.4"
}
}