-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 KB
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
{
"name": "what2ride_api",
"main": "index.js",
"scripts": {
"start": "tsc && node ./dist/app.js",
"watch": "npx nodemon app.ts",
"build": "tsc",
"debug": "export DEBUG=* && npm run start",
"test": "jest --coverage --testResultsProcessor ./node_modules/jest-sonar-reporter/index.js"
},
"author": "David Huh, Lisa Kletsko, Patrick Müller, Denis Thiessen",
"license": "MIT",
"dependencies": {
"app-root-path": "^3.0.0",
"axios": "^0.24.0",
"cors": "^2.8.5",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"express": "^4.18.1",
"guid-typescript": "^1.0.9",
"mariadb": "^2.5.3",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.3",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/winston": "^2.4.4",
"jest": "^28.1.1",
"jest-sonar-reporter": "^2.0.0",
"source-map-support": "^0.5.19",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"tslint": "^6.1.3",
"typescript": "^4.7.3"
},
"jestSonar": {
"sonar56x": true,
"reportPath": "testResults",
"reportFile": "sonar-report.xml",
"indent": 4
}
}