-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.36 KB
/
package.json
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
47
48
49
50
{
"name": "express-typescript-api-template",
"version": "1.0.0",
"description": "Express API template with mongodb",
"main": "src/index.ts",
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"build": "tsc",
"start:dist": "node dist/src/index.js",
"lint": "eslint --fix src test",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nthskyradiated/express-typescript-api-template.git"
},
"author": "andyP",
"license": "MIT",
"bugs": {
"url": "https://github.com/nthskyradiated/express-typescript-api-template/issues"
},
"homepage": "https://github.com/nthskyradiated/express-typescript-api-template#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"helmet": "^8.0.0",
"mongodb": "^6.12.0",
"morgan": "^1.10.0",
"prom-client": "^15.1.3",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/morgan": "^1.9.9",
"@types/node": "^22.10.2",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}