forked from arowM/elm-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.07 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
{
"private": true,
"dependencies": {
"autoprefixer": "9.8.6",
"elm": "0.19.1-3",
"elm-analyse": "0.16.5",
"elm-doc-preview": "5.0.3",
"elm-format": "^0.8.4",
"parcel-bundler": "1.12.4",
"postcss": "^8.2.10",
"postcss-100vh-fix": "^0.1.1",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-modules": "^3.2.2",
"prettier": "^2.2.1",
"rimraf": "3.0.2",
"stylelint": "^13.8.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.18.0"
},
"scripts": {
"doc": "elm-doc-preview -p 8001",
"start": "parcel src/index.html",
"build": "rimraf dist/ && parcel build src/index.html dist/ --no-source-maps --public-url /elm-app-template",
"format": "stylelint --fix src/style/ && elm-format src",
"test": "stylelint src/style/ && elm-analyse && elm-format --validate src/"
},
"author": "Kadzuya Okamoto",
"license": "MIT",
"devDependencies": {
"node": "^14.15.1",
"node-elm-compiler": "^5.0.5",
"sass": "^1.30.0"
}
}