-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "webpack-starter",
"version": "1.0.0",
"description": "A light foundation for your next frontend project based on webpack.",
"scripts": {
"build": "webpack --config webpack/webpack.config.prod.js --colors",
"build-staging": "webpack --config webpack/webpack.config.staging.js --colors",
"dev": "webpack-dev-server --open --config webpack/webpack.config.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wbkd/webpack-starter.git"
},
"keywords": [
"webpack",
"startkit",
"frontend",
"es6",
"javascript",
"webdev"
],
"author": "webkid.io",
"license": "MIT",
"bugs": {
"url": "https://github.com/wbkd/webpack-starter/issues"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"semi": 2
}
},
"babel": {
"presets": [
"es2015"
]
},
"homepage": "https://github.com/wbkd/webpack-starter#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"eslint": "^5.4.0",
"eslint-loader": "^2.1.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"html-webpack-pug-plugin": "^0.3.0",
"mini-css-extract-plugin": "^0.4.2",
"pug-html-loader": "^1.1.5",
"sass": "^1.55.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.22.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"bootstrap": "^4.1.3",
"bootstrap-3-typeahead": "^4.0.2",
"d3v4": "^4.2.2",
"datatables.net": "^1.11.5",
"html-loader": "^0.5.5",
"jquery": "^3.3.1",
"luxon": "^3.0.1",
"popper.js": "^1.14.4",
"pug-html-loader": "^1.1.5",
"tabulator-tables": "^5.4.1",
"xss": "^1.0.3"
}
}