-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
31 lines (31 loc) · 896 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
29
30
31
{
"name": "elm-spa-parcel",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm install && npm run build && npm run dev",
"build": "npm run build:elm-spa && npm run build:elm",
"build:elm-spa": "elm-spa build .",
"build:elm": "parcel build index.html",
"dev": "concurrently --raw --kill-others \"npm run dev:elm-spa\" \"npm run dev:elm\"",
"dev:elm-spa": "chokidar src/Pages -c \"npm run build:elm-spa\"",
"dev:elm": "parcel index.html"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"chokidar-cli": "^2.1.0",
"concurrently": "^6.0.0",
"elm": "^0.19.1-3",
"elm-hot": "^1.1.4",
"elm-spa": "^6.0.0",
"node-elm-compiler": "^5.0.4",
"parcel-bundler": "^1.12.4"
},
"dependencies": {
"@webcomponents/custom-elements": "^1.4.1",
"prismjs": "^1.20.0"
}
}