-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 976 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
{
"name": "roll",
"version": "0.1.0",
"description": "RPG Dice Roller",
"main": "index.js",
"repository": "https://github.com/deciduously/roll.git",
"author": "deciduously <[email protected]>",
"license": "MIT",
"scripts": {
"build": "run-p build:cljs build:less build:rsprod",
"build:cljs": "lein build",
"build:less": "lein less once",
"build:rsdev": "cargo build",
"build:rsprod": "cargo build --release",
"clean": "cargo clean",
"demo": "run-s build:cljs run:rsdev",
"dev": "run-p watch:cljs watch:rs",
"emacs": "run-p watch:rs watch:less",
"prod": "run-s build:cljs run:rsprod",
"run:rsdev": "cargo run -- serve",
"run:rsprod": "cargo run --release -- serve",
"reload:cljs": "lein figwheel dev",
"watch:less": "lein less auto",
"watch:rs": "cargo watch -x check -x test -x run",
"watch:cljs": "run-s build:less reload:cljs"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}