-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
47 lines (47 loc) · 1.35 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
{
"name": "webpack-esnext-boilerplate",
"version": "0.2.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm test && node tasks/build.js",
"start": "npm test && node tasks/watch.js",
"test": "eslint app/scripts/**/*.js tasks/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/philipwalton/webpack-esnext-boilerplate.git"
},
"author": {
"name": "Philip Walton",
"email": "philip@philipwalton.com",
"url": "http://philipwalton.com"
},
"license": "Apache 2",
"bugs": {
"url": "https://github.com/philipwalton/webpack-esnext-boilerplate/issues"
},
"homepage": "https://github.com/philipwalton/webpack-esnext-boilerplate#readme",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"chokidar": "^3.0.0",
"connect": "^3.6.6",
"core-js": "^3.0.1",
"eslint": "^5.16.0",
"eslint-config-google": "^0.12.0",
"fs-extra": "^7.0.1",
"lodash": "^4.17.15",
"md5": "^2.2.1",
"nunjucks": "^3.2.0",
"regenerator-runtime": "^0.13.2",
"serve-static": "^1.14.0",
"terser-webpack-plugin": "^1.2.3",
"webpack": "^4.31.0",
"webpack-manifest-plugin": "^2.0.4",
"whatwg-fetch": "^3.0.0"
}
}