-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.89 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
{
"name": "nestjs-project",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"prepare": "husky install",
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "TZ=UTC nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "cross-env NODE_ENV=test jest",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"test:cov": "cross-env NODE_ENV=test jest --coverage",
"test:debug": "cross-env NODE_ENV=test node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "cross-env NODE_ENV=test jest --config ./jest-e2e.config.ts --runInBand",
"test:e2e:watch": "npm run test:e2e -- --watch",
"typeorm": "ts-node -r tsconfig-paths/register -r dotenv/config ./node_modules/.bin/typeorm -d src/database/datasource.ts",
"repl": " TZ=UTC nest start --entryFile repl --watch",
"migration:generate": "npx typeorm-ts-node-commonjs migration:generate ./src/database/migrations/schema-update -d src/database/datasource.ts",
"migration:show": "npx typeorm-ts-node-commonjs migration:show -d src/database/datasource.ts",
"migration:run": "npx typeorm-ts-node-commonjs migration:run -d src/database/datasource.ts",
"migration:revert": "npx typeorm-ts-node-commonjs migration:revert -d src/database/datasource.ts"
},
"dependencies": {
"@apollo/server": "^4.10.4",
"@as-integrations/fastify": "^2.1.1",
"@fastify/static": "^7.0.4",
"@nestjs/apollo": "^12.1.0",
"@nestjs/axios": "^3.1.3",
"@nestjs/cache-manager": "^2.2.2",
"@nestjs/common": "^10.3.8",
"@nestjs/config": "^3.2.2",
"@nestjs/core": "^10.3.8",
"@nestjs/graphql": "^12.1.1",
"@nestjs/platform-express": "^10.4.13",
"@nestjs/platform-fastify": "^10.3.8",
"@nestjs/schedule": "^4.0.2",
"@nestjs/swagger": "^7.4.2",
"@nestjs/typeorm": "^10.0.2",
"axios": "^1.7.9",
"cache-manager-redis-yet": "^5.1.5",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"concurrently": "^8.2.2",
"graphql": "^16.8.1",
"graphql-type-json": "^0.3.2",
"pg": "^8.11.5",
"reflect-metadata": "^0.2.2",
"request": "^2.88.2",
"rxjs": "^7.8.1",
"typeorm": "^0.3.20",
"typeorm-naming-strategies": "^4.1.0",
"typescript-eslint": "^7.8.0"
},
"devDependencies": {
"@nestjs/cli": "^10.3.2",
"@nestjs/schematics": "^10.1.1",
"@nestjs/testing": "^10.3.8",
"@types/eslint": "^8.56.10",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint-plugin-prettier": "^3.1.3",
"@types/jest": "^29.5.12",
"@types/lint-staged": "^13.3.0",
"@types/node": "^20.12.7",
"@types/pg": "^8.11.5",
"@types/prettier": "^2.7.3",
"@types/pretty-quick": "^3.1.6",
"@types/request": "^2.48.12",
"@types/rimraf": "^4.0.5",
"@types/source-map-support": "^0.5.10",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"rimraf": "^5.0.5",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5"
},
"lint-staged": {
"{src,test}/**/*.{js,jsx,ts,tsx}": [
"npm run lint -- --max-warnings=0"
]
}
}