-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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": "webpack-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"b": "webpack --progress --colors",
"build:prod": "webpack -p",
"watch": "webpack --watch",
"test": "node ./node_modules/mocha/bin/mocha",
"test-jest": "jest",
"eslint": "eslint ./src/main.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.8",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "^22.4.3",
"mocha": "^5.0.0",
"style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^3.10.0",
"webpack-livereload-plugin": "^1.0.0"
}
}