-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"name": "nest-starter",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"volta": {
"node": "16.14.2",
"yarn": "1.22.18"
},
"packageManager": "[email protected]",
"scripts": {
"build": "rm -rf dist && tsc",
"start": "NODE_PATH=dist/ node dist/app/main.js",
"dev": "yarn tsnd -r tsconfig-paths/register --watch src --transpile-only --exit-child src/main.ts",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix"
},
"dependencies": {
"@gitbeaker/node": "^35.6.0",
"@nestjs/common": "^8.4.4",
"@nestjs/core": "^8.0.0",
"@nestjs/platform-express": "^8.0.0",
"@prisma/client": "^5.15.1",
"@steffthestunt/hellog": "^1.2.10",
"class-validator": "^0.13.2",
"discord.js": "13.6.0",
"dotenv": "^16.0.0",
"prisma": "^5.15.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5"
},
"devDependencies": {
"@escape.tech/mookme": "2.2.0-beta.2",
"@nestjs/testing": "^8.0.0",
"@types/express": "^4.17.13",
"@types/node": "^17.0.24",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"supertest": "^6.2.2",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.3"
}
}