-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.3 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.3 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "gander",
"author": "Brandon Bothell",
"version": "0.0.1",
"main": "./compiled/camera.js",
"packageManager": "yarn@4.9.2",
"workspaces": [
".",
"web"
],
"scripts": {
"start": "node ./compiled/camera.js",
"build": "yarn build:server & yarn build:client",
"dev": "concurrently --kill-others-on-fail --raw \"yarn dev:client\" \"yarn dev:server -- --host 0.0.0.0\"",
"build:server": "yarn build:server:safe",
"build:server:safe": "copyfiles -u 1 \"source/generated/**/*\" \"compiled-temp\" && tsc --project tsconfig.json --outDir compiled-temp && ts-node scripts/safeReplace.ts",
"build:server:force": "copyfiles -u 1 \"source/generated/**/*\" \"compiled\" && tsc --project tsconfig.json",
"build:client": "dotenvx run -- yarn workspace web build",
"dev:client": "dotenvx run -- yarn workspace web vite build --watch",
"dev:server": "nodemon --watch source --ext ts --exec ts-node ./source/camera.ts",
"db:generate": "yarn pnpify prisma generate",
"db:push": "yarn pnpify prisma db push",
"db:migrate-reset": "yarn pnpify prisma migrate reset",
"db:migrate-dev": "yarn pnpify prisma migrate dev",
"db:migrate-resolve": "yarn pnpify prisma migrate resolve",
"lint": "yarn lint:server && yarn lint:client",
"lint:server": "yarn eslint .",
"lint:client": "yarn workspace web eslint .",
"generate:ssl": "ts-node scripts/generateSSLCertificates.ts"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/cookie-parser": "^1",
"@types/copyfiles": "^2",
"@types/cors": "^2.8.18",
"@types/express": "^5.0.2",
"@types/express-session": "^1",
"@types/greenlock-express": "^4",
"@types/jsonwebtoken": "^9",
"@types/session-file-store": "^1",
"@types/web-push": "^3",
"@typescript-eslint/parser": "^8.46.4",
"concurrently": "^9.1.2",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-hooks": "^7.0.1",
"nodemon": "^3.1.10",
"pm2": "^6.0.6",
"prettier": "^3.6.2",
"prisma": "^6.9.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4"
},
"dependencies": {
"@capacitor/android": "^7.2.0",
"@capacitor/app": "^7.0.1",
"@capacitor/cli": "^7.2.0",
"@capacitor/core": "^7.3.0",
"@capacitor/local-notifications": "^7.0.1",
"@capacitor/preferences": "^7.0.1",
"@capacitor/push-notifications": "^7.0.1",
"@capacitor/screen-orientation": "^7.0.1",
"@dotenvx/dotenvx": "^1.48.3",
"@prisma/client": "^6.9.0",
"@root/encoding": "^1.0.1",
"@root/keypairs": "^0.10.3",
"@yarnpkg/pnpify": "^4.1.5",
"chalk": "4",
"chokidar": "^4.0.3",
"console-stamp": "^3.1.2",
"cookie-parser": "^1.4.7",
"copyfiles": "^2.4.1",
"cors": "^2.8.5",
"express": "^5.1.0",
"express-session": "^1.18.1",
"firebase-admin": "^13.4.0",
"greenlock-express": "^4.0.3",
"jimp": "^1.6.0",
"jsonwebtoken": "^9.0.2",
"open": "8",
"session-file-store": "^1.5.0",
"socket.io": "^4.8.1",
"web-push": "^3.6.7"
},
"dependenciesMeta": {
"@prisma/client": {
"unplugged": true
},
"prisma": {
"unplugged": true
},
"wsl-utils@0.2.0": {
"unplugged": true
}
}
}