forked from pyladiesbkk/pyladies-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 867 Bytes
/
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
{
"name": "pyladies-web",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:pyladiesbkk/pyladies-web.git",
"author": "Mahatthana Nomsawadi <mahatthana.n@gmail.com>",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^9.6.5",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"live-server": "^1.2.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"serve": "^11.2.0",
"style-loader": "^1.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"scripts": {
"start": "webpack-dev-server --open",
"start:prod": "yarn build && serve dist",
"build": "webpack -p --mode production"
}
}