-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.35 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
{
"name": "string-bingo",
"version": "1.0.0",
"description": "Interactive String Bingo Game - Complete challenges and get BINGO!",
"main": "index.html",
"scripts": {
"dev": "vite",
"build": "vite build",
"deploy": "npm run build && gh-pages -d dist",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:headed": "playwright test --headed",
"postinstall": "prisma generate --schema=./backend/prisma/schema.prisma"
},
"keywords": [
"bingo",
"game",
"string",
"interactive",
"challenges"
],
"engines": {
"node": "^18.0.0 || ^20.0.0 || ^22.0.0"
},
"author": "String Team",
"license": "MIT",
"dependencies": {
"@playwright/test": "^1.56.0",
"@prisma/client": "^5.7.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"google-auth-library": "^10.9.1",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"vite": "^6.4.3"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.5",
"gh-pages": "^6.0.0",
"prisma": "^5.7.1",
"rollup": "4.59.0"
}
}