-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.94 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
{
"name": "theabnermatheus-server-codebase",
"version": "1.0.0",
"main": "src/main.ts",
"engines": {
"pnpm": ">=7.0.0"
},
"scripts": {
"start": "node dist/main.js",
"build": "pnpm run clean && tsc",
"dev": "nodemon --exec ts-node src/main.ts --watch src/ -e ts --inspect",
"lint": "eslint --fix ./src ./test",
"clean": "rimraf dist",
"test": "tsc && jest test --colors --passWithNoTests",
"test:debug": "pnpm test --detectOpenHandles --forceExit",
"test:watch": "tsc && jest test --watch",
"setup:project": "rimraf node_modules pnpm-lock.yaml dist coverage && pnpm install && pnpm prepare && pnpm prisma generate",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"dependencies": {
"@fastify/cors": "^8.3.0",
"@fastify/helmet": "^11.0.0",
"@fastify/rate-limit": "^8.0.3",
"@graphql-tools/load-files": "^7.0.0",
"@graphql-tools/merge": "^9.0.0",
"@graphql-tools/schema": "^10.0.0",
"@prisma/client": "^5.1.1",
"chalk": "^4.1.2",
"dotenv": "^16.3.1",
"fastify": "^4.21.0",
"graphql": "^16.8.0",
"inversify": "^6.0.1",
"joi": "17.9.2",
"luxon": "^3.4.0",
"mercurius": "^13.1.0",
"prisma": "^5.1.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/luxon": "^3.3.1",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"lint-staged": "^14.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.js": [
"pnpm lint",
"pnpm test"
],
"*.ts": [
"pnpm lint",
"pnpm test"
]
}
}