-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.57 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
{
"name": "make-bss-great-again-api",
"version": "1.0.0",
"description": "API for MakeBSSGreatAgain Project",
"author": "Hyecheol (Jerry) Jang <hyecheol123@gmail.com>",
"contributors": [],
"main": "dist/main.js",
"license": "BSD-3-Clause",
"keywords": [],
"jest": {
"globals": {
"ts-jest": {
"diagnostics": true
}
},
"testMatch": [
"**/test/**/*.test.(ts|js)"
],
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"scripts": {
"test": "jest --coverage --detectOpenHandles --forceExit --errorOnDeprecated",
"lint": "gts lint",
"lint:fix": "gts fix",
"build": "tsc",
"clean": "gts clean",
"start": "node dist/main.js",
"prestart": "npm run build",
"pretest": "npm run build",
"posttest": "npm run lint"
},
"engines": {
"node": ">=12.9.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/jsonwebtoken": "^8.5.4",
"@types/node": "^16.3.2",
"@types/redis": "^2.8.31",
"@types/supertest": "^2.0.11",
"gts": "^3.1.0",
"jest": "^27.0.6",
"mockdate": "^3.0.5",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"dependencies": {
"ajv": "^8.6.2",
"ajv-formats": "^2.1.0",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mariadb": "^2.5.4",
"redis": "^3.1.2"
}
}