-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.15 KB
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
{
"name": "webpack-app",
"version": "1.0.0",
"description": "Webpack App",
"main": "webpack.config.js",
"scripts": {
"dev": "webpack-dev-server --inline --content-base public/",
"build": "webpack --config webpack-production.config.js -p"
},
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": ""
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babili-webpack-plugin": "0.0.10",
"bootstrap": "^4.0.0-alpha.6",
"css-loader": "^0.25.0",
"extract-text-webpack-plugin": "^2.0.0",
"jasmine-core": "^2.5.2",
"jshint": "^2.9.3",
"jshint-loader": "^0.8.3",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.2",
"karma-webpack": "^2.0.2",
"node-libs-browser": "^1.0.0",
"node-sass": "^3.10.0",
"sass-loader": "^4.0.2",
"strip-loader": "^0.1.2",
"style-loader": "^0.13.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"webpack-shell-plugin": "^0.4.3"
},
"dependencies": {
"dotenv-webpack": "^1.4.1"
}
}