-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 958 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 958 Bytes
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
{
"name": "we-verify",
"version": "2.0.0",
"description": "We Verify — AI startup idea validation engine",
"private": true,
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "node server/index.js",
"client": "cd client && npx vite",
"install-all": "npm install && cd client && npm install",
"test:backend": "cross-env NODE_ENV=test jest",
"test:frontend": "cd client && npm run test",
"test:e2e": "playwright test",
"test:all": "npm run test:backend && npm run test:frontend && npm run test:e2e"
},
"dependencies": {
"@supabase/supabase-js": "^2.97.0",
"axios": "^1.7.0",
"concurrently": "^9.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.0",
"express": "^4.21.0",
"stripe": "^21.0.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"cross-env": "^10.1.0",
"jest": "^30.2.0",
"supertest": "^7.2.2"
}
}