-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.46 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
{
"name": "@pakket-project/api",
"version": "1.0.0",
"description": "Pakket API",
"homepage": "https://github.com/pakket-project/api",
"repository": {
"type": "git",
"url": "https://github.com/pakket-project/api"
},
"author": "pakket-project",
"main": "./dist/main",
"private": true,
"engines": {
"node": "16.13.2"
},
"prisma": {
"schema": "src/modules/prisma/schema.prisma"
},
"scripts": {
"clean:dist": "sudo rm -rf dist/",
"clean:node": "sudo rm -rf node_modules/",
"script": "node ./tools/scripts/dist",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:tsc": "tsc --noEmit -p .",
"lint:all": "yarn lint; yarn lint:tsc",
"lint:fix": "eslint --fix '**/*.ts'",
"prettier": "prettier -c .",
"prettier:fix": "prettier -c -w .",
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch --preserveWatchOutput",
"start:debug": "nest start --debug --watch --preserveWatchOutput",
"start:prod": "node dist/main"
},
"dependencies": {
"@nestjs/cli": "^8.2.0",
"@nestjs/common": "^8.0.6",
"@nestjs/config": "^1.1.6",
"@nestjs/core": "^8.0.6",
"@nestjs/graphql": "^9.1.2",
"@nestjs/platform-express": "^8.0.6",
"@nestjs/swagger": "^5.0.9",
"@prisma/client": "^3.8.0",
"@types/express": "^4.17.13",
"apollo-server-express": "^3.6.1",
"argon2": "^0.28.3",
"chalk": "^4.1.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"dayjs": "^1.10.7",
"graphql": "^15",
"jsonwebtoken": "^8.5.1",
"prisma": "^3.8.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.3.0",
"swagger-ui-express": "^4.1.6",
"tsconfig-paths": "^3.10.1",
"utility-types": "^3.10.0",
"validator": "^13.7.0",
"@types/multer": "^1.4.7"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.18",
"@tribecamp/eslint-config-base": "^1.1.2",
"@tribecamp/eslint-config-typescript": "^1.2.2",
"@types/jsonwebtoken": "^8.5.7",
"@types/node": "14.17.3",
"@types/validator": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"dotenv": "^11.0.0",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
}
}