-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "moon-forge",
"version": "0.4.6",
"description": "A forge for lunar instruments",
"scripts": {
"start": "npm install && npm run build:dev && npm run dev",
"test": "elm-test",
"test:watch": "elm-test --watch",
"build": "run-s build:elm-spa build:elm",
"build:dev": "run-s build:elm-spa",
"build:staging": "run-s build:elm-spa build:staging:elm",
"dev": "run-p dev:elm-spa dev:elm",
"build:elm": "vite build",
"build:elm-spa": "elm-spa build .",
"build:staging:elm": "vite build",
"dev:elm": "vite",
"dev:elm-spa": "chokidar src/Pages -c \"elm-spa build .\""
},
"keywords": [],
"author": "Brian Ginsburg",
"devDependencies": {
"chokidar-cli": "^3.0.0",
"cssnano": "^5.0.16",
"elm": "0.19.1-5",
"elm-hot": "^1.1.5",
"elm-spa": "5.0.2",
"elm-test": "0.19.1-revision4",
"npm-run-all": "4.1.5",
"typescript": "^4.4.4",
"vite": "^2.7.13",
"vite-plugin-elm": "^2.5.1"
},
"staticFiles": {
"staticPath": {
"staticPath": "public",
"staticOutDir": "public"
},
"watcherGlob": "**"
},
"dependencies": {
"rxjs": "^6.6.3",
"standardized-audio-context": "^25.1.12",
"webmidi": "^2.5.1",
"webnative": "^0.31.0"
},
"browserslist": [
"last 1 Chrome versions"
]
}