forked from gustialfian/nodejs-modular-monolith
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "nodejs-modular-monolith",
"version": "0.1.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "cross-env APP_ENV=prod node src/app.js",
"dev": "nodemon src/app.js",
"test": "cross-env APP_ENV=test jest",
"test:e2e": "cross-env APP_ENV=test DEBUG=testcontainers:containers jest --detectOpenHandles --runInBand"
},
"repository": {
"type": "git",
"url": "https://github.com/gustialfian/nodejs-modular-monolith"
},
"author": "Gusti Alfian M. P.",
"license": "ISC",
"dependencies": {
"@godaddy/terminus": "^4.1.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"helmet": "^4.2.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"moment": "^2.24.0",
"pg": "^8.1.0",
"undici": "^5.1.1",
"uuid": "^3.3.2",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"cross-env": "^5.2.0",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"supertest": "^4.0.2",
"testcontainers": "^8.10.0"
}
}