-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.3 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
{
"name": "fox-travels-backend",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": {
"name": "Kevin Pagliuca",
"email": "kevin.pagliuca@outlook.com"
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
},
"scripts": {
"prepare": "husky install",
"prebuild": "rimraf dist",
"build": "nest build",
"prelint": "prettier --write . --loglevel silent",
"lint": "eslint . --ext .ts --ignore-path .gitignore --max-warnings=0",
"postlint": "tsc --project tsconfig.json --noEmit",
"commit": "git cz && node .husky/push.js",
"precommit": "git add . && npm run lint && git add .",
"prisma:migrate": "prisma migrate dev && prisma generate",
"start": "nest start",
"start:ngrok": "npx ngrok http 3333",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main"
},
"dependencies": {
"@nestjs/apollo": "^10.1.3",
"@nestjs/axios": "^0.1.0",
"@nestjs/common": "^8.0.0",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^8.0.0",
"@nestjs/graphql": "^10.1.3",
"@nestjs/platform-express": "^8.0.0",
"@prisma/client": "^4.5.0",
"apollo-server-express": "^3.10.3",
"axios": "^1.1.3",
"bcryptjs": "^2.4.3",
"class-validator": "^0.13.2",
"graphql": "^16.6.0",
"jsonwebtoken": "^8.5.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.2.0"
},
"devDependencies": {
"@nestjs/cli": "^8.0.0",
"@nestjs/schematics": "^8.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-helpers": "^1.3.0",
"eslint-plugin-prettier": "^4.2.1",
"git-cz": "^4.9.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"prisma": "^4.5.0",
"source-map-support": "^0.5.20",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
}
}