-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·84 lines (84 loc) · 2.23 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
{
"name": "create-nodejs-prisma-typegraphql-package",
"version": "1.2.0",
"description": "Starter for a Prisma + GraphQL API with Node.js, TypeGraphQL and TypeScript With Subscriptions, Authentication and Triggers",
"main": "src/app.ts",
"author": "domo-dao/alacret",
"license": "ISC",
"scripts": {
"build": "tsc --build --clean && tsc",
"start": "node dist/app.js",
"dev": "nodemon src/app.ts",
"test": "jest --verbose ./src",
"eslint": "eslint --ext .ts --fix ./src/ --ignore-path .gitignore",
"format": "prettier --write \"./**/*.{js,json}\""
},
"engines": {
"node": ">=16 =<20.9.0"
},
"dependencies": {
"@apollo/server": "^4.10.2",
"class-validator": "^0.14.1",
"express": "^4.19.2",
"graphql": "^15.3.0",
"graphql-fields": "^2.0.3",
"graphql-scalars": "^1.20.0",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.11.2",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.1.4",
"prisma": "^5.11.0",
"reflect-metadata": "^0.2.1",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"type-graphql": "^1.1.1",
"ws": "^8.16.0"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-proposal-decorators": "^7.24.1",
"@babel/preset-env": "^7.24.3",
"@prisma/client": "^5.11.0",
"@types/graphql-fields": "^1.3.9",
"@types/jest": "^27.4.0",
"@types/node": "^20.11.30",
"@types/validator": "^13.11.9",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-config-jsdoc": "^15.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.2.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typegraphql-prisma": "^0.27.2",
"typescript": "^5.4.3"
},
"keywords": [
"node.js",
"express.js",
"auth0",
"prisma",
"typescript",
"typegraphql",
"grapqhl",
"prisma-typegraphql"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"prettier --write"
]
}
}