-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (44 loc) · 1.29 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
{
"name": "deploy-elm-now-zeit",
"description": "Webpack setup for Elm app",
"version": "0.0.1",
"license": "MIT",
"author": "Andreas Pehnack",
"scripts": {
"test": "webpack-dev-server --hot --inline",
"start": "serve --single ./dist",
"now-start": "serve --single ./dist",
"prebuild": "rimraf dist elm-stuff",
"build": "webpack",
"reinstall": "npm i rimraf && rimraf node_modules && npm uninstall -g elm && npm i -g elm && npm i && elm package install"
},
"dependencies": {
"popper.js": "^1.14.4",
"serve": "latest",
"webpack-cli": "^3.1.0",
"elm": "^0.18.0",
"elm-webpack-loader": "^4.5.0"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"ajv": "^6.5.2",
"bootstrap": "^4.1.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.27.3",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^3.2.0",
"jquery": "^3.2.1",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.5.1",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"postcss-loader": "^1.3.3",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^0.5.8",
"webpack": "^4.16.5",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.4"
}
}