This repository has been archived by the owner on Jun 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
94 lines (94 loc) · 2.66 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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "jaebook-server",
"version": "0.0.1",
"license": "MIT",
"description": "JaeBook API Server",
"scripts": {
"build": "tsc",
"start": "cross-env NODE_ENV=production node build/server.js",
"dev": "cross-env NODE_ENV=development nodemon",
"lint": "eslint --ext .ts,.js . --ignore-path .gitignore .",
"prod": "yarn build && yarn start",
"test": "jest --coverage --verbose",
"test:clear": "jest --clearCache"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint --fix",
"pre-push": "yarn test"
}
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.6",
"@types/helmet": "^0.0.45",
"@types/jest": "^25.2.1",
"@types/jsonwebtoken": "^8.3.9",
"@types/morgan": "^1.9.0",
"@types/node": "^13.11.1",
"@types/supertest": "^2.0.8",
"@types/swagger-ui-express": "^4.1.2",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^25.3.0",
"nodemon": "^2.0.3",
"prettier": "^2.0.4",
"sqlite3": "^4.1.1",
"supertest": "^4.0.2",
"ts-jest": "^25.3.1",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@sentry/node": "^5.15.4",
"bcrypt": "^5.0.0",
"body-parser": "^1.18.1",
"class-transformer": "^0.3.1",
"class-validator": "^0.11.1",
"class-validator-jsonschema": "^1.3.1",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"express": "^4.15.4",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql2": "^2.1.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.8.0",
"routing-controllers-openapi": "^1.8.1",
"swagger-ui-express": "^4.1.4",
"typedi": "^0.8.0",
"typeorm": "^0.2.24",
"typeorm-typedi-extensions": "^0.2.3",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"setupFilesAfterEnv": [
"./test/utils/JestSetup.ts"
],
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"tsConfig": "./tsconfig.json",
"diagnostics": true
}
},
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}