generated from codetheweb/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.68 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
{
"name": "@xkcdy/api",
"private": true,
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"repository": "[email protected]:codetheweb/",
"author": "Max Isom <[email protected]>",
"license": "MIT",
"files": [
"dist",
"dts"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"start": "node dist/main",
"start:prod": "npm run migrations:run && npm start",
"dev": "nest start --watch",
"lint": "xo",
"lint:fix": "xo --fix",
"test": "lint",
"migrations:generate": "prisma migrate dev --preview-feature",
"migrations:run": "prisma migrate deploy --preview-feature",
"generate-typings": "kysely-codegen --out-file ./src/types/db.d.ts"
},
"devDependencies": {
"@nestjs/cli": "^7.5.6",
"@types/bull": "4.10.0",
"@types/cors": "^2.8.6",
"@types/ioredis": "5.0.0",
"@types/morgan": "^1.9.1",
"@types/node": "^16.0.0",
"@types/pg": "8.6.5",
"@types/probe-image-size": "^5.0.1",
"@types/uuid": "^8.0.0",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"husky": "^4.2.5",
"kysely-codegen": "0.5.3",
"lint-staged": "^10.5.3",
"prisma": "4.11.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.2",
"xo": "^0.52.3"
},
"xo": {
"ignore": [
"old-src/**"
],
"rules": {
"new-cap": [
"error",
{
"capIsNewExceptionPattern": "@*"
}
],
"n/prefer-global/process": "off",
"n/prefer-global/buffer": "off",
"import/extensions": "off",
"@typescript-eslint/naming-convention": "off",
"unicorn/prefer-module": "off",
"@typescript-eslint/comma-dangle": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"xo --fix"
]
},
"dependencies": {
"@fastify/static": "6.10.2",
"@nestjs/bullmq": "10.0.1",
"@nestjs/common": "^10.1.0",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.1.0",
"@nestjs/platform-fastify": "^10.1.0",
"@nestjs/serve-static": "^4.0.0",
"@nestjs/swagger": "^7.1.2",
"@prisma/client": "5.0.0",
"apn": "^2.2.0",
"bullmq": "4.6.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"exifr": "^7.1.3",
"fastify": "4.20.0",
"fastify-swagger": "^5.2.0",
"got": "^11.3.0",
"ioredis": "^5.3.2",
"kysely": "0.26.1",
"p-limit": "^3.0.2",
"pg": "8.11.1",
"probe-image-size": "^5.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "7.8.1",
"uuid": "^8.2.0"
}
}