-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.2 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
{
"name": "pustaka-rs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "elm-test",
"watch": "run-p watch:client watch:rust",
"watch:client": "parcel watch src/client/index.html -d app",
"watch:rust": "watchexec --restart -w src/server 'npm run start:server'",
"prod:client": "rm -rf elm-stuff .cache && parcel build src/client/index.html -d app --no-source-maps",
"start:server": "cargo run --bin pustaka",
"seed": "cargo run --bin seed",
"start": "npm run watch",
"diesel:install": "cargo install diesel_cli --no-default-features --features sqlite",
"diesel:run": "diesel migration run",
"scan": "cargo run --bin scanner",
"clean:db": "sqlite3 pustaka.db 'delete from publication_category; delete from publication; delete from publication_progress'"
},
"author": "Abadi Kurniawan",
"license": "ISC",
"devDependencies": {
"elm-hot": "^1.0.1",
"elm-test": "^0.19.0-rev6",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.3",
"shx": "^0.3.2",
"typescript": "^3.4.5"
},
"dependencies": {
"elm": "^0.19.0-no-deps",
"epubjs": "^0.3.84",
"pdfjs-dist": "^2.0.943",
"screenfull": "^4.2.0"
}
}