-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.46 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.46 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
{
"name": "simon",
"type": "module",
"version": "0.0.0",
"description": "Simon: The classic memory game",
"main": "index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"client": "pnpm --filter client",
"server": "pnpm --filter server",
"build": "pnpm -r build",
"ci": "pnpm lint && pnpm typecheck && pnpm test",
"clean": "rm -rf node_modules && pnpm -r exec rm -rf node_modules && pnpm i",
"dev": "pnpm -r dev",
"e2e": "pnpm exec playwright test",
"e2e:ui": "pnpm exec playwright test --ui",
"format": "pnpm exec prettier --write **/*.{js,ts,tsx,json,css,md}",
"lint": "pnpm -r lint",
"lint:fix": "pnpm exec eslint --fix",
"test": "pnpm -r test",
"test:watch": "pnpm -r test:watch",
"typecheck": "pnpm -r typecheck"
},
"keywords": [
"simon",
"memory game",
"state machine",
"fsm",
"react",
"game design"
],
"author": "@codenickycode",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/codenickycode/simon.git"
},
"dependencies": {
"hono": "^4.5.8"
},
"devDependencies": {
"@playwright/test": "^1.47.0",
"@types/eslint": "^9.6.0",
"@types/node": "^22.7.6",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"typescript": "^5.5.3",
"wrangler": "^3.80.5"
},
"engines": {
"node": ">=22.9.0",
"pnpm": ">=9"
}
}