-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.5 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
{
"name": "openlogtool-server",
"version": "0.10.0",
"private": true,
"license": "AGPL-3.0-only",
"engines": {
"node": ">=24.18.0"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"build": "tsc",
"build:web": "npm --prefix web run build",
"build:live": "npm --prefix live run build",
"build:all": "npm run build && npm run build:web && npm run build:live",
"verify:web": "npm --prefix web run lint && npm --prefix web test && npm --prefix web run build",
"verify:live": "npm --prefix live run lint && npm --prefix live run build",
"typecheck": "tsc --noEmit",
"test": "tsx --test --test-concurrency=1 test/*.test.ts",
"test:dist": "npm run build && node scripts/test-dist.mjs",
"verify": "npm run typecheck && npm run build:web && npm run build:live && npm test && npm run test:dist && npm run verify:web && npm run verify:live"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"better-sqlite3": "^12.10.0",
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.21.0",
"helmet": "^7.1.0",
"ip2region": "2.3.0",
"jsonwebtoken": "^9.0.2",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.8",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/ws": "^8.5.10",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}