-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·41 lines (40 loc) · 1.92 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
{
"name": "webpack2-test",
"version": "1.0.0",
"scripts": {
"001": "./node_modules/.bin/webpack --config demos/001/webpack.config.js --env.dev",
"001-p": "./node_modules/.bin/webpack -p --config demos/001/webpack.config.js --env",
"001-0": "./node_modules/.bin/webpack --config demos/001-0/webpack.config.js --env.dev",
"001-0-p": "./node_modules/.bin/webpack -p --config demos/001-0/webpack.config.js --env",
"002": "./node_modules/.bin/webpack --config demos/002/webpack.config.js --env.dev",
"002-p": "./node_modules/.bin/webpack -p --config demos/002/webpack.config.js --env",
"003": "./node_modules/.bin/webpack --config demos/003/webpack.config.js --env.dev",
"003-p": "./node_modules/.bin/webpack -p --config demos/003/webpack.config.js --env",
"004": "./node_modules/.bin/webpack --config demos/004/webpack.config.js --env",
"004-0-p": "./node_modules/.bin/webpack -p --config demos/004-0/webpack.config.js ",
"01-04": "./node_modules/.bin/webpack --config demos/01-04.webpack.config.js --env.dev",
"01-04-p": "./node_modules/.bin/webpack -p --config demos/01-04.webpack.config.js --env",
"005": "./node_modules/.bin/webpack -p --config demos/005/webpack.config.js ",
"006": "./node_modules/.bin/webpack --config demos/006/webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.20.0",
"babel-preset-babili": "0.0.9",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babili-webpack-plugin": "0.0.7",
"html-webpack-plugin": "^2.25.0",
"moment": "^2.17.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"webpack": "^2.2.0-rc.3"
},
"description": "webpack2 new features attempt"
}