-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.55 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
{
"name": "webpack-test",
"version": "1.0.0",
"description": "",
"scripts": {
"debug": "node --inspect --inspect-brk node_modules/webpack/bin/webpack.js --config build/webpack.prod.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config build/webpack.prod.config.js",
"watch": "webpack --watch",
"dev": "webpack-dev-server --config build/webpack.dev.config.js --open",
"server": "node build/server.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"glob-all": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"json-loader": "^0.5.7",
"json-parse-better-errors": "^1.0.2",
"koa": "^2.8.1",
"koa-static": "^5.0.0",
"koa-webpack": "^5.2.4",
"loader-utils": "^1.2.3",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"ts-loader": "^6.0.4",
"url-loader": "^2.1.0",
"webpack-dev-middleware": "^3.7.1",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@babel/parser": "^7.6.2",
"@babel/polyfill": "^7.6.0",
"@babel/traverse": "^7.6.2",
"node-sass": "^4.12.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
}
}