-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
53 lines (53 loc) · 1.43 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
{
"name": "webpack-single-page-boilerplate",
"version": "0.0.0",
"description": "Simple Page app boilerplate using webpack",
"main": "scripts/index.js",
"scripts": {
"build": "NODE_ENV=production webpack -p",
"start": "webpack-dev-server -d --watch",
"test": "eslint . && webpack"
},
"keywords": [
"boilerplate",
"webpack",
"babel",
"less"
],
"author": "Nihey Takizawa <[email protected]>",
"license": "CC0-1.0",
"dependencies": {
"font-awesome": "^4.7.0",
"highlight.js": "^9.15.8",
"img-loader": "^3.0.1",
"jquery": "^3.5.1",
"sprite-js": "^0.1.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"cheerio": "^1.0.0-rc.3",
"config": "^3.1.0",
"css-loader": "^3.0.0",
"eslint": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"exports-loader": "^0.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^4.0.0",
"html-minifier": "^4.0.0",
"image-load": "0.0.2",
"json-loader": "^0.5.7",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"md5": "^2.2.1",
"node-libs-browser": "^2.2.1",
"style-loader": "^0.23.1",
"text-loader": "0.0.1",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.11.0"
}
}