-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 900 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 900 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
40
{
"name": "kryptonite",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"start": "node dist/server.js",
"dev": "nodemon src/server.ts",
"lint": "eslint src/**/*.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"helmet": "^8.1.0",
"morgan": "^1.10.1",
"zod": "^4.1.13"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/morgan": "^1.9.10",
"@types/node": "^24.10.1",
"@types/supertest": "^6.0.3",
"eslint": "^9.39.1",
"jest": "^30.2.0",
"nodemon": "^3.1.11",
"prettier": "^3.7.4",
"supertest": "^7.1.4",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}