-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.17 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
{
"name": "inu-events-server",
"version": "0.5.14",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node build/src/index.js",
"postinstall": "npm run build",
"postversion": "git push && git push --tags",
"preview": "tsc && node build/src/index.js",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@anatine/zod-openapi": "^1.3.0",
"@types/assert": "^1.5.6",
"@types/cors": "^2.8.12",
"ant-path-matcher": "^0.0.5",
"apple-signin-auth": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"firebase-admin": "^10.0.2",
"google-auth-library": "^7.11.0",
"isomorphic-fetch": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"multer": "^1.4.4",
"mysql": "^2.14.1",
"node-schedule": "^2.1.0",
"openapi3-ts": "^2.0.2",
"reflect-metadata": "^0.1.10",
"serialize-error": "^8.1.0",
"swagger-ui-express": "^4.3.0",
"typeorm": "0.2.41",
"typeorm-naming-strategies": "^2.0.0",
"typescript": "^4.5.4",
"uuid-with-v6": "^2.0.0",
"zod": "^3.11.6"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/date-fns": "^2.6.0",
"@types/express": "^4.17.13",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^27.4.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/multer": "^1.4.7",
"@types/node": "^16.7.1",
"@types/node-schedule": "^1.3.2",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid-with-v6": "^1.1.0",
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"ts-node": "3.3.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"globals": {
"ts-jest": {
"diagnostics": true
}
}
}
}