-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 874 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
{
"name": "@thibautre/eye-workspace",
"private": true,
"scripts": {
"start": "yarn start:web",
"start:rs": "cargo run serve",
"start:web": "yarn web start",
"web": "yarn workspace @thibautre/eye-web",
"db:migrate": "diesel migration run",
"db:migrate:redo": "diesel migration redo",
"prod:sync-and-restart": "git pull origin main && yarn prod:build && sudo systemctl stop eye.service && yarn db:migrate && sudo systemctl start eye.service",
"prod": "./target/release/eye",
"prod:build": "cargo build --release && yarn && yarn web build",
"typecheck": "yarn web typecheck"
},
"workspaces": [
"packages-js/*"
],
"prettier": {
"arrowParens": "avoid",
"semi": false,
"trailingComma": "all",
"singleQuote": false
},
"dependencies": {
"typescript": "^5.4.5"
},
"packageManager": "[email protected]"
}