-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 1.02 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
{
"name": "labml_dashboard",
"version": "0.4.87",
"description": "LabML Dashboard",
"main": "app.js",
"repository": "https://github.com/lab-ml/dashboard",
"author": "Varuna Jayasiri",
"license": "MIT",
"devDependencies": {
"@types/node": "latest",
"@types/sqlite3": "latest",
"sass": "latest",
"typescript": "latest"
},
"dependencies": {
"@types/d3": "latest",
"sqlite3": "latest",
"yaml": "latest"
},
"scripts": {
"build": "$npm_execpath run build:server && $npm_execpath run build:ui && $npm_execpath run build:sass",
"watch": "$npm_execpath run watch:server & $npm_execpath run watch:ui & $npm_execpath run watch:sass",
"build:ui": "tsc -p tsconfig.ui.json",
"watch:ui": "tsc -w -p tsconfig.ui.json",
"build:server": "tsc -p tsconfig.server.json",
"watch:server": "tsc -w -p tsconfig.server.json",
"build:sass": "sass ui/style.scss:app/ui/css/style.css",
"watch:sass": "sass --watch ui/style.scss:app/ui/css/style.css",
"clean": "rm -rf app/"
}
}