This repository has been archived by the owner on Apr 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.16 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "corona-screening",
"version": "1.0.0",
"main": "src/server.ts",
"repository": "https://github.com/LeonErath/corona-screening.git",
"author": "Leon Erath <[email protected]>",
"license": "MIT",
"dependencies": {
"@koa/cors": "2",
"@types/bcrypt": "^3.0.0",
"@types/bluebird": "^3.5.32",
"@types/ioredis": "^4.16.2",
"@types/koa": "^2.11.2",
"@types/koa-passport": "^4.0.2",
"@types/koa-redis": "^4.0.0",
"@types/koa-router": "^7.4.0",
"@types/koa-session": "^5.10.2",
"@types/koa__cors": "^3.0.1",
"@types/node": "^13.9.3",
"@types/node-schedule": "^1.3.0",
"@types/passport-local": "^1.0.33",
"@types/redis": "^2.8.16",
"@types/socket.io": "^2.1.4",
"@types/validator": "^12.0.1",
"axios": "^0.21.2",
"bcrypt": "^5.0.0",
"chalk": "^4.0.0",
"dotenv": "^8.2.0",
"ioredis": "^4.17.1",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-passport": "^4.1.3",
"koa-redis": "^4.0.1",
"koa-router": "^8.0.8",
"koa-session": "^5.13.1",
"moment": "^2.26.0",
"node-schedule": "^1.3.2",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"socket.io": "^2.3.0",
"typescript": "^3.8.3",
"winston": "^3.2.1"
},
"scripts": {
"dev": "ts-node-dev src/server.ts",
"build-ts": "tsc",
"postinstall": "npm run build-ts",
"start": "npm run serve",
"serve": "node dist/src/server.js",
"watch-node": "nodemon dist/src/server.js",
"watch-ts": "tsc -w",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint 'src/**/*.{ts,tsx}'"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.3",
"jest": "^25.2.2",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"ts-node-dev": "^1.0.0-pre.44"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"yarn lint"
]
}
}