-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 894 Bytes
/
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
{
"name": "express-boilerplate",
"version": "1.0.0",
"description": "A simple node typescript boilerplate",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "nodemon src/index.ts",
"test": "jest --detectOpenHandles --forceExit"
},
"keywords": [
"Node",
"Express",
"Typescript",
"Nodemon"
],
"author": "Nicholas Herious",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.7",
"@types/supertest": "^2.0.12",
"jest": "^29.2.2",
"nodemon": "^2.0.20",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"chalk": "v4.1.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"joi": "^17.6.4",
"mongoose": "^6.7.0"
}
}