-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "express-standard-api",
"version": "1.0.0",
"description": "Standard API with Express",
"scripts": {
"dev": "nodemon ./src/server.ts",
"build": "tsc",
"prod": "nodemon ./dist/src/server.js",
"test": "jest --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/munirapp/express-standard-api.git"
},
"keywords": [],
"author": "Munir AP",
"license": "MIT",
"bugs": {
"url": "https://github.com/munirapp/express-standard-api/issues"
},
"homepage": "https://github.com/munirapp/express-standard-api#readme",
"dependencies": {
"@types/jest": "^26.0.9",
"@types/node": "^14.0.27",
"@types/redis": "^2.8.25",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dayjs": "^1.8.33",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"knex": "^0.21.4",
"nodemon": "^2.0.4",
"pg": "^8.3.0",
"redis": "^3.0.2",
"supertest": "^4.0.2",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-express": "^4.1.4",
"ts-jest": "^26.2.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"devDependencies": {
"jest": "^26.4.0"
}
}