-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
43
44
45
{
"name": "skills",
"version": "1.0.0",
"description": "webpack & pug & stylus multipage build",
"main": "index.js",
"scripts": {
"build": "npm run dll:prd && webpack --progress --color --profile",
"dll:dev": "webpack --config webpack.dll.common.js --progress --color --profile",
"dll:prd": "webpack --config webpack.dll.prd.js --env.production --progress --color --profile",
"start": "npm run dll:dev && webpack-dev-server --progress --color"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.0",
"extract-text-webpack-plugin": "^2.1.0",
"glob": "^7.1.1",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.2",
"pug": "^2.0.0-beta9",
"pug-loader": "^2.3.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"es6-promise": "^4.1.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"react": "^15.6.1",
"react-dom": "^15.6.1"
}
}