-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
28 lines (28 loc) · 851 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
{
"name": "elm-designer",
"productName": "Elm Designer",
"version": "0.4.2",
"description": "A code generator for Elm UI",
"repository": "https://github.com/passiomatic/elm-designer",
"devDependencies": {
"@parcel/transformer-elm": "^2.8.3",
"@parcel/transformer-sass": "^2.8.3",
"elm": "^0.19.1-5",
"elm-constants": "^1.0.0",
"elm-format": "^0.8.7",
"parcel": "^2.8.3"
},
"dependencies": {
"balloon-css": "^1.2.0"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"dev": "parcel src/app.html",
"dev-no-debug": "NODE_ENV=production parcel src/app.html",
"landing": "parcel src/index.html",
"constants": "elm-constants",
"build": "parcel build src/index.html",
"build-no-maps": "parcel build src/index.html --no-source-maps",
"clean": "rm -fR dist"
}
}