-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.71 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.71 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
{
"name": "fitness-app",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"dev": "concurrently \"node -r dotenv/config ./node_modules/vite/bin/vite.js\" \"node -r dotenv/config src/server/authServer.js\"",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"db:print": "node -e \"console.log(require('fs').readFileSync('sql/setup_db.sql','utf8'))\"",
"db:migrate": "node -e \"console.log(require('fs').readFileSync('sql/migrations/001_create_audit_logs_and_policies.sql','utf8'))\"",
"db:cleanup": "node scripts/run_cleanup.js",
"preview": "vite preview"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@supabase/supabase-js": "^2.87.1",
"bad-words": "^4.0.0",
"body-parser": "^2.2.0",
"canvas": "^3.2.0",
"canvas-confetti": "^1.9.4",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"express": "^5.2.1",
"framer-motion": "^10.16.4",
"jsonwebtoken": "^9.0.3",
"leo-profanity": "^1.8.0",
"lucide-react": "^0.561.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^7.9.6",
"express-rate-limit": "^8.2.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.10",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"@vitejs/plugin-react": "^5.1.3",
"concurrently": "^8.2.2",
"dotenv": "^17.2.3",
"eslint": "^9.39.4",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"types": "src/types",
"typeRoots": [
"node_modules/@types"
]
}