-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.3 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 4.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "gander",
"author": "Brandon Bothell",
"version": "0.0.1",
"main": "./compiled/camera.js",
"packageManager": "yarn@4.14.1",
"workspaces": [
".",
"web"
],
"scripts": {
"start": "node ./compiled/camera.js",
"build": "yarn build:server & yarn build:client",
"android:sync": "yarn cap sync android",
"android:open": "yarn cap open android",
"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.build.json --outDir compiled-temp && ts-node -P tsconfig.build.json scripts/safeReplace.ts",
"build:server:force": "copyfiles -u 1 \"source/generated/**/*\" \"compiled\" && tsc --project tsconfig.build.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 -P tsconfig.build.json ./source/camera.ts\"",
"db:generate": "yarn prisma generate",
"db:push": "yarn prisma db push",
"db:migrate:dev:reset": "yarn prisma migrate reset",
"db:migrate:dev": "yarn prisma migrate dev",
"db:migrate:resolve": "yarn prisma migrate resolve",
"db:migrate:deploy": "yarn prisma migrate deploy",
"lint": "yarn lint:server && yarn lint:client",
"lint:fix": "yarn lint:server --fix && yarn lint:client --fix",
"lint:server": "yarn eslint",
"lint:client": "yarn workspace web eslint",
"format:server": "prettier --check source/",
"format:server:fix": "prettier --write source/",
"format:client": "prettier --check web/src",
"format:client:fix": "prettier --write web/src",
"generate:ssl": "ts-node -P tsconfig.build.json scripts/generateSSLCertificates.ts",
"env:encrypt": "yarn dotenvx encrypt",
"env:decrypt": "yarn dotenvx decrypt"
},
"devDependencies": {
"@eslint/compat": "2.0.5",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@stylistic/eslint-plugin": "5.10.0",
"@types/cookie-parser": "1.4.10",
"@types/copyfiles": "2.4.4",
"@types/cors": "2.8.19",
"@types/express": "5.0.6",
"@types/express-session": "1.19.0",
"@types/greenlock-express": "4.0.3",
"@types/jsonwebtoken": "9.0.10",
"@types/node": "25.6.0",
"@types/session-file-store": "1.2.6",
"@types/web-push": "3.6.4",
"@typescript-eslint/eslint-plugin": "8.59.1",
"@typescript-eslint/parser": "8.59.1",
"concurrently": "9.2.1",
"eslint": "10.3.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-unused-imports": "4.4.1",
"globals": "17.6.0",
"jiti": "2.6.1",
"nodemon": "3.1.14",
"pm2": "6.0.14",
"prettier": "3.8.3",
"prisma": "7.8.0",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"typescript": "6.0.3",
"typescript-eslint": "8.59.1"
},
"dependencies": {
"@capacitor/android": "8.3.1",
"@capacitor/app": "8.1.0",
"@capacitor/cli": "8.3.1",
"@capacitor/core": "8.3.1",
"@capacitor/local-notifications": "8.0.2",
"@capacitor/preferences": "8.0.1",
"@capacitor/push-notifications": "8.0.3",
"@capacitor/screen-orientation": "8.0.1",
"@dotenvx/dotenvx": "1.64.0",
"@prisma/adapter-better-sqlite3": "7.8.0",
"@prisma/client": "7.8.0",
"@prisma/client-runtime-utils": "7.8.0",
"@root/encoding": "1.0.1",
"@root/keypairs": "0.10.3",
"@types/express-rate-limit": "6.0.2",
"@yarnpkg/pnpify": "4.1.6",
"chalk": "5.6.2",
"chokidar": "5.0.0",
"console-stamp": "3.1.2",
"cookie-parser": "1.4.7",
"copyfiles": "2.4.1",
"cors": "2.8.6",
"express": "5.2.1",
"express-rate-limit": "8.4.1",
"express-session": "1.19.0",
"firebase-admin": "13.8.0",
"greenlock-express": "4.0.3",
"jimp": "1.6.1",
"jsonwebtoken": "9.0.3",
"open": "11.0.0",
"session-file-store": "1.5.0",
"socket.io": "4.8.3",
"web-push": "3.6.7"
},
"dependenciesMeta": {
"@prisma/client": {
"unplugged": true
},
"prisma": {
"unplugged": true
},
"wsl-utils@0.2.0": {
"unplugged": true
}
}
}