-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.22 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "elm-webpack-4-starter",
"version": "0.0.1",
"description": "Elm starter template with webpack 4",
"repository": {
"type": "git",
"url": "https://github.com/romariolopezc/elm-webpack-4-starter"
},
"contributors": [
"Romario Lopez <romariolopezc@gmail.com>",
"Geoffrey Roguelon <geoffrey.roguelon@gmail.com>"
],
"scripts": {
"webpack": "webpack",
"webpack-dev-server": "webpack-dev-server",
"prod": "npm run webpack -- --env.mode production",
"prod:analyze": "npm run prod -- --env.presets analyze",
"prod:compress": "npm run prod -- --env.presets compress",
"dev": "webpack-dashboard --title 'Elm Dev Server' --minimal -- npm run webpack-dev-server -- --env.mode development",
"elm-analyse": "elm-analyse -s -o",
"preprod": "rimraf dist",
"lint": "stylelint src/assets/styles",
"test": "elm-test",
"format": "elm-format ."
},
"license": "MIT",
"browserslist": [
"> 1%",
"last 2 versions"
],
"dependencies": {
"elm": "^0.19.1-3",
"elm-format": "^0.8.1",
"elm-test": "^0.19.0-rev6",
"katex": "^0.11.0"
},
"devDependencies": {
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.5",
"bootstrap": "^4.3.1",
"compression-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"elm-analyse": "^0.16.4",
"elm-hot-webpack-loader": "^1.0.2",
"elm-webpack-loader": "^6.0.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.0.6",
"imagemin-webpack-plugin": "^2.4.2",
"jquery": "^3.4.1",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"popper.js": "^1.15.0",
"postcss-loader": "^3.0.0",
"purgecss-webpack-plugin": "^1.5.0",
"rimraf": "^2.6.3",
"sass-loader": "^7.2.0",
"style-loader": "^0.23.1",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-webpack-plugin": "^0.10.4",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^1.1.2",
"webpack": "^4.39.1",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.6",
"webpack-dashboard": "^3.0.7",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.1"
}
}