-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.83 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
{
"name": "bgm-event-calendar-api",
"version": "1.0.0",
"description": "API for BGM Event Calendar Project",
"author": "Hyecheol (Jerry) Jang <hyecheol123@gmail.com>",
"contributors": [
"Coalery <doralife12@naver.com>",
"Cpprhtn"
],
"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": {
"build": "tsc",
"clean": "gts clean",
"lint": "gts lint",
"lint:fix": "gts fix",
"pretest": "npm run build",
"test": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 jest --coverage --detectOpenHandles --forceExit --errorOnDeprecated",
"posttest": "npm run lint",
"prestart": "npm run build",
"start": "node dist/main.js",
"prenewAdmin": "npm run build",
"newAdmin": "node dist/utilsRunner/newAdmin.runner.js",
"predeleteAdmin": "npm run build",
"deleteAdmin": "node dist/utilsRunner/deleteAdmin.runner.js"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "^16.11.12",
"@types/supertest": "^2.0.11",
"cross-env": "^7.0.3",
"gts": "^3.1.0",
"jest": "^27.4.4",
"mockdate": "^3.0.5",
"supertest": "^6.1.6",
"ts-jest": "^27.1.1",
"typescript": "^4.5.3"
},
"dependencies": {
"@azure/cosmos": "^3.15.0",
"ajv": "^8.8.2",
"ajv-formats": "^2.1.1",
"cookie-parser": "^1.4.6",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1"
}
}