forked from Corona-Trace/backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
{
"name": "coronatrace-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"npx": "npx",
"lint": "eslint src --ext .ts",
"test:integration": "jest -c jest.config.integration.js",
"test:unit": "jest -c jest.config.unit.js",
"clean": "rimraf dist",
"compile": "tsc",
"package": "yarn lint && yarn test:unit && yarn clean && yarn compile && yarn test:integration",
"start": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boltsource/coronatrace-backend.git"
},
"author": "",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/boltsource/coronatrace-backend/issues"
},
"homepage": "https://github.com/boltsource/coronatrace-backend#readme",
"devDependencies": {
"@types/bluebird": "^3.5.30",
"@types/body-parser": "^1.19.0",
"@types/bunyan": "^1.8.6",
"@types/express": "^4.17.3",
"@types/jest": "^25.1.4",
"@types/jsonwebtoken": "^8.3.8",
"@types/node": "^12.12.31",
"@types/supertest": "^2.0.8",
"@types/validator": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"jest": "^25.2.3",
"nodemon": "^2.0.2",
"npx": "^10.2.2",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"dependencies": {
"body-parser": "^1.19.0",
"bunyan": "^1.8.12",
"express": "^4.17.1",
"sequelize": "^5.21.5"
}
}