-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.35 KB
/
package.json
File metadata and controls
44 lines (44 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
{
"name": "cloud-engine-analysis",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "node dist/server.js",
"build": "tsc",
"start": "node dist/server.js",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"test:integration": "vitest run --config vitest.integration.config.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write 'src/**/*.ts' 'examples/**/*.ts'",
"project": "tsx src/cli/bin.ts"
},
"dependencies": {
"@types/restify": "^8.5.12",
"@types/sqlite3": "^5.1.0",
"chess.ts": "^0.16.2",
"commander": "^14.0.0",
"restify": "^11.1.0",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitest/ui": "^1.6.0",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "~5.8.3",
"vite": "^5.4.10",
"vitest": "^1.6.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}