-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 3.91 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "promise-api",
"version": "0.0.0",
"description": "Promise API Server",
"author": {
"name": "jinyongp",
"email": "dev.jinyongp@gmail.com",
"url": "https://jinyongp.dev"
},
"private": true,
"license": "UNLICENSED",
"scripts": {
"nest": "nest",
"build": "nest build",
"dev": "nest start --watch",
"sls:dev": "dotenv -oe .env.dev -- sls",
"prisma": "dotenv -oe .env.local -- prisma",
"migration": "npm run migration:local",
"migration:local": "dotenv -oe .env.local -- tsx ./scripts/migration",
"migration:test": "dotenv -oe .env.test -- tsx ./scripts/migration",
"migration:dev": "dotenv -oe .env.dev -- tsx ./scripts/migration",
"ssh-tunnel": "env-cmd -e dev --use-shell tsx ./scripts/ssh-tunnel.ts",
"format": "prettier --write **/* --ext .ts",
"lint": "DEBUG=eslint:eslint eslint \"src/**/*.{js,mjs,ts}\"",
"lint:fix": "DEBUG=eslint:eslint eslint --fix \"src/**/*.{js,mjs,ts}\"",
"typecheck": "tsc -p tsconfig.build.json && echo \"✓ typecheck passed\"",
"typecheck:test": "tsc -p tsconfig.test.json && echo \"✓ typecheck passed\"",
"test": "dotenv -oe .env.test -- jest",
"test:all": "npm run typecheck && npm run lint && npm run test",
"coverage": "dotenv -oe .env.test -- jest --coverage",
"update": "npx -y npm-check-updates -ui",
"inthash": "dotenv -oe .env.local -- tsx ./scripts/inthash.ts",
"init": "tsx ./scripts/initialize.ts"
},
"dependencies": {
"@aws-sdk/client-apigatewaymanagementapi": "^3.675.0",
"@aws-sdk/client-s3": "^3.675.0",
"@codegenie/serverless-express": "^4.15.0",
"@nestjs/common": "^10.4.5",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.4.5",
"@nestjs/mapped-types": "^2.0.5",
"@nestjs/platform-express": "^10.4.5",
"@nestjs/platform-socket.io": "^10.4.5",
"@nestjs/platform-ws": "^10.4.5",
"@nestjs/serve-static": "^4.0.2",
"@nestjs/swagger": "^7.4.2",
"@nestjs/websockets": "^10.4.5",
"@prisma/client": "^5.21.1",
"aws-lambda": "^1.0.7",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cli-highlight": "^2.1.11",
"date-fns": "^4.1.0",
"express": "^4.21.1",
"hbs": "^4.2.0",
"inthash": "^3.0.4",
"ioredis": "^5.4.1",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.11.3",
"remeda": "^2.15.2",
"rxjs": "^7.8.1",
"sqids": "^0.3.0",
"sql-highlight": "^6.0.0",
"uuid": "^10.0.0",
"winston": "^3.15.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@nestjs/cli": "^10.4.5",
"@nestjs/schematics": "^10.2.2",
"@nestjs/testing": "^10.4.5",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/aws-lambda": "^8.10.145",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "^1.4.12",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.12",
"@typescript-eslint/parser": "^8.10.0",
"chalk": "^5.3.0",
"dotenv-cli": "^7.4.2",
"env-cmd": "^10.1.0",
"eslint": "^9.13.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jest-extended": "^2.4.0",
"eslint-plugin-jsdoc": "^50.4.3",
"globals": "^15.11.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"path-to-regexp": "^8.2.0",
"prisma": "^5.21.1",
"serverless": "^3.39.0",
"serverless-deployment-bucket": "^1.6.0",
"serverless-domain-manager": "^7.3.8",
"serverless-prune-plugin": "^2.0.2",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"tsconfig-paths": "4.2.0",
"tsx": "^4.19.1",
"type-fest": "^4.26.1",
"typescript": "5.6",
"typescript-eslint": "^8.10.0"
},
"prisma": {
"seed": "tsx ./prisma/seeds"
}
}