-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "elmstagram",
"version": "1.0.0",
"scripts": {
"build": "webpack -p --config config/webpack.prod.js",
"clean": "rimraf dist",
"postinstall": "elm package install -y",
"prebuild": "npm run clean",
"start": "webpack-dev-server -d --config config/webpack.dev.js --profile --progress --watch --inline --hot --content-base src/",
"watch": "npm run build -- --watch"
},
"devDependencies": {
"autoprefixer": "^9.5.0",
"copy-webpack-plugin": "^5.0.2",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"elm": "^0.18.0",
"elm-hot-loader": "^0.5.4",
"elm-webpack-loader": "^4.3.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.13.1",
"postcss-loader": "^3.0.0",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"resolutions": {
"cryptiles": "^4.1.2",
"hoek": "^4.2.1",
"tunnel-agent": "^0.6.0"
},
"engines": {
"node": ">= 6.0.0"
}
}