-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 828 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 828 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
{
"name": "server",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "nodemon -q",
"build": "tsc",
"start": "node dist/index.js",
"test": "npx vitest run",
"test:watch": "npx vitest",
"check": "npm run build && npm run test",
"cli": "tsx src/cli.ts",
"ticket": "tsx src/cli.ts ticket",
"ticket:check": "npm run ticket && npm run check",
"cursor:prompt": "tsx src/cli.ts prompt"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"dotenv": "^16.6.1",
"express": "^4.21.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.13.10",
"@types/supertest": "^6.0.2",
"nodemon": "^3.1.14",
"supertest": "^7.0.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
}
}