-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "express-api-starter-ts",
"version": "1.2.0",
"description": " A basic starter for an express.js API with Typescript",
"main": "src/index.ts",
"scripts": {
"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"
},
"keywords": [],
"author": "CJ R. <[email protected]> (https://w3cj.now.sh)",
"repository": {
"type": "git",
"url": "https://github.com/w3cj/express-api-starter.git"
},
"license": "MIT",
"dependencies": {
"mongodb": "^6.8.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.10",
"@types/supertest": "^6.0.2",
"eslint": "^9.6.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"supertest": "^7.0.0",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}