-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.33 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": "nodejs-api-typescript-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:dev": "cross-env NODE_ENV=dev npm run build",
"build:prod": "cross-env NODE_ENV=production npm run build",
"dev": "nodemon",
"start": "NODE_ENV=production node ./build/index.js",
"test": "cross-env NODE_ENV=test jest --coverage -w 3"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bluebird": "^3.7.2",
"console-stamp": "^3.0.6",
"cors": "^2.8.5",
"express": "^4.18.1",
"helmet": "^5.1.0",
"joi": "^17.6.0",
"js-yaml": "^4.1.0",
"mongoose": "^6.4.3",
"morgan": "^1.10.0",
"supertest": "^6.2.4"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/bluebird": "^3.5.36",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.0",
"@types/js-yaml": "^4.0.5",
"@types/morgan": "^1.9.3",
"@types/supertest": "^2.0.12",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"jest": "^27.5.1",
"jest-environment-node": "^27.5.1",
"mongodb-memory-server": "^8.7.2",
"nock": "^13.2.8",
"nodemon": "^2.0.19",
"ts-jest": "^27.1.4",
"ts-node": "^10.8.2",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.7.4"
}
}