This repository has been archived by the owner on Mar 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.59 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
{
"name": "konsensus-app-backend",
"version": "1.0.0",
"description": "Node.js + MySQL API for Konsensus, Authentication and Registration",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dcsil/konsensus-app-backend.git"
},
"scripts": {
"start": "node ./src/server.js",
"start:dev": "nodemon ./src/server.js",
"test": "jest --coverage --detectOpenHandles",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"@sentry/node": "^6.18.2",
"@sentry/tracing": "^6.18.2",
"aws-sdk": "^2.1095.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"buffer": "^6.0.3",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"file-type": "^17.1.1",
"joi": "^17.2.0",
"jsonwebtoken": "^8.5.1",
"multiparty": "^4.2.3",
"mysql2": "^2.1.0",
"rootpath": "^0.1.2",
"sequelize": "^6.3.4"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^27.5.1",
"jest-junit": "^13.0.0",
"nodemon": "^2.0.4",
"supertest": "^6.2.2"
},
"jest": {
"roots": [
"<rootDir>"
],
"modulePaths": [
"<rootDir>"
],
"moduleDirectories": [
"node_modules"
],
"verbose": true,
"coverageReporters": ["clover", "json", "lcov", ["text", {"skipFull": true}]] },
"nyc": {
"reporter": [
"lcov"
]
}
}