-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.47 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
46
47
48
{
"name": "custom",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently --kill-others \"npm run webpack:dev-server\"",
"build": "npm run webpack -- --env.production",
"build:dev": "npm run webpack",
"webpack": "webpack --env.development --progress --config webpack.config.babel",
"webpack:dev-server": "webpack-dev-server --env.development --hot --inline --config webpack.config.babel"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"clean-webpack-plugin": "^0.1.17",
"concurrently": "^3.5.1",
"css-hot-loader": "^1.3.6",
"css-loader": "^0.28.7",
"eslint": "^4.15.0",
"eslint-loader": "^1.9.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"html-loader": "^0.5.4",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.7.2",
"postcss-loader": "^2.1.0",
"sass-loader": "^6.0.6",
"style-ext-html-webpack-plugin": "^3.4.5",
"style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.1.5",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7"
},
"dependencies": {
"jquery": "^3.2.1"
}
}