-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.79 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.79 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
123
124
125
{
"name": "web-security-app",
"version": "1.0.0",
"description": "Home Security App with TensorFlow.js and WebRTC",
"scripts": {
"auth0:test": "ts-node src/utils/testAuthConfig.ts",
"keyvault:test": "node -e \"require('./src/utils/keyVault').keyVaultService.getSecret('auth0-client-secret').then(console.log).catch(console.error)\"",
"dev": "vite",
"build": "tsc && vite build",
"start": "PORT=3002 node server.js",
"preview": "vite preview",
"dev:https": "vite --host --https",
"serve:iphone": "vite --host --https --port 3000",
"mobile:build": "cap build",
"mobile:ios": "cap open ios",
"mobile:android": "cap open android",
"lint": "eslint . --report-unused-disable-directives --max-warnings 200",
"lint:security": "eslint . --report-unused-disable-directives --max-warnings 200",
"security:audit": "npm audit --audit-level high",
"security:check": "npm run lint:security && npm run security:audit",
"type-check": "tsc --noEmit",
"test": "vitest",
"mvp": "ts-node src/mvp/server.ts",
"cli": "node cli.js"
},
"dependencies": {
"@azure/identity": "^4.13.0",
"@azure/keyvault-secrets": "^4.10.0",
"@azure/msal-browser": "^5.2.0",
"@azure/msal-react": "^5.0.4",
"@prisma/adapter-pg": "^7.4.1",
"@prisma/client": "^7.4.1",
"@stripe/stripe-js": "^8.6.4",
"@tensorflow-models/coco-ssd": "^2.2.3",
"@tensorflow/tfjs": "^4.13.0",
"@tensorflow/tfjs-backend-webgl": "^4.13.0",
"@tensorflow/tfjs-converter": "^4.13.0",
"@types/node": "^25.0.10",
"applicationinsights": "^3.13.0",
"bcryptjs": "^3.0.3",
"date-fns": "^2.30.0",
"express": "^5.1.0",
"framer-motion": "^12.29.0",
"hls.js": "^1.6.15",
"idb": "^8.0.3",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.2.2",
"lucide-react": "^0.563.0",
"node-fetch": "^3.3.2",
"node-media-server": "^4.2.4",
"pg": "^8.18.0",
"prisma": "^7.3.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^7.13.0",
"stripe": "^20.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"web-push": "^3.6.7",
"workbox-window": "^7.0.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@capacitor/cli": "^8.0.1",
"@capacitor/core": "^8.0.1",
"@eslint/js": "^9.39.1",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@tailwindcss/postcss": "^4.1.17",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/express": "^5.0.6",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^10.0.0",
"@types/web-push": "^3.6.4",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.46.0",
"@vitejs/plugin-basic-ssl": "^2.1.4",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.22",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-plugin-security": "^3.0.1",
"jsdom": "^27.2.0",
"postcss": "^8.4.29",
"react-refresh": "^0.18.0",
"tailwindcss": "^4.1.17",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.1.0",
"vitest": "^4.0.18"
},
"keywords": [
"security",
"tensorflow",
"computer-vision",
"webrtc",
"pwa",
"react"
],
"author": "Your Name",
"license": "MIT",
"overrides": {
"bn.js": "^5.2.3",
"hono": "^4.11.7",
"lodash": "^4.17.23",
"minimatch": "^10.2.1",
"minimist": "^1.2.8",
"mkdirp": "^3.0.1",
"glob": "^11.0.2",
"rimraf": "^6.0.1",
"flat-cache": "^6.1.4",
"file-entry-cache": "^9.1.0",
"ajv": "^8.17.1",
"qs": "^6.13.0",
"@eslint/eslintrc": {
"ajv": "^6.12.6"
},
"eslint": {
"ajv": "^6.12.6"
}
}
}