-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
65 lines (65 loc) · 1.87 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "budget-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon --config nodemon.json",
"start:log": "env LOGS=stdout nodemon --config nodemon.json | bunyan",
"start:ci": "ts-node src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest --testMatch **/integration/*.(it).ts",
"test:e2e": "jest --testMatch **/e2e/*.(e2e).ts",
"test:arch": "jest --testMatch **/arch/*.(spec).ts",
"test:pact": "jest --testMatch **/contract/*.(pact).ts",
"sonar": "sonar-scanner.bat"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/bunyan": "^1.8.7",
"@types/csurf": "^1.11.2",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bunyan": "^1.8.15",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"express": "^4.17.3",
"express-session": "^1.17.2",
"express-validator": "^6.13.0",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"otplib": "^12.0.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"rand-token": "^0.4.0",
"rotating-file-stream": "^2.1.6"
},
"devDependencies": {
"@pact-foundation/pact": "^9.16.5",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/faker": "^5.5.9",
"@types/jest": "^27.0.2",
"@types/morgan": "^1.9.3",
"@types/node": "^12.20.36",
"@types/passport": "^1.0.7",
"@types/passport-jwt": "^3.0.6",
"@types/supertest": "^2.0.11",
"faker": "^5.5.3",
"jest": "^27.3.1",
"jest-sonar-reporter": "^2.0.0",
"nodemon": "^2.0.20",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"ts-node": "^8.10.2",
"tsarch": "^5.2.0",
"tslib": "^1.14.1",
"typescript": "^3.9.10"
}
}