-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1014 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 1014 Bytes
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
{
"scripts": {
"build": "rimraf dist && npm run build:init && parcel build index.html --no-cache --public-url ./",
"build:words": "node makewords.js",
"build:init": "mkdir -p dist && cp -r public/* dist/",
"deploy": "npm run build && gh-pages --dist dist/",
"elm:build": "elm make src/Main.elm --optimize --output=build/app.js",
"start:parcel": "parcel serve index.html --port 8000 --no-cache",
"start:dev": "npm run start:parcel",
"start": "npm run build:init && PARCEL_ELM_NO_DEBUG=1 npm run start:dev",
"test": "elm-test"
},
"devDependencies": {
"@parcel/packager-raw-url": "^2.2.1",
"@parcel/transformer-elm": "^2.2.1",
"@parcel/transformer-image": "^2.2.1",
"@parcel/transformer-sass": "^2.2.1",
"@parcel/transformer-webmanifest": "^2.2.1",
"bootstrap": "^5.1.3",
"bootstrap-dark-5": "^1.1.3",
"elm-test": "^0.19.1-revision7",
"elm-tooling": "^1.7.0",
"gh-pages": "^3.2.3",
"parcel": "^2.2.1",
"rimraf": "^3.0.2"
}
}