-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 773 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 773 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
{
"name": "lizard",
"version": "1.0.0",
"scripts": {
"cli": "node apps/cli/index.js --play",
"server": "node --watch apps/server/index.js",
"client": "vite apps/client",
"client:build": "vite build",
"client:preview": "vite preview",
"test": "NODE_ENV=test node --test --watch",
"test-only": "NODE_ENV=test node --test --test-only --watch",
"test:coverage": "NODE_ENV=test c8 -r html node --test"
},
"type": "module",
"license": "ISC",
"description": "The Lizard Card game",
"volta": {
"node": "22.4.0"
},
"dependencies": {
"preact": "^10.24.0"
},
"devDependencies": {
"@preact/preset-vite": "^2.9.1",
"@types/node": "^22.9.0",
"c8": "^10.1.2",
"prettier": "3.3.2",
"vite": "^5.4.1"
}
}