-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 978 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 978 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
33
34
35
36
37
38
39
{
"name": "lean-time",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/seymourpoler/LeanTime.git"
},
"author": "seymourpoler at gmail dot com",
"license": "GPL v3",
"scripts": {
"dev": "tsx src/server/index.ts",
"build": "vite build && tsc --skipLibCheck",
"start": "NODE_ENV=production node dist/server/index.js",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@types/express": "^5.0.6",
"express": "^5.2.1",
"npm": "^11.14.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.7.4",
"vite": "^8.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^4.1.1",
"jsdom": "^29.0.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.0.18"
}
}