-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.63 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
{
"name": "backend-boilerplate-graphql",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"engines": {
"node": "18.x"
},
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only ./src/index.ts",
"start": "tsc && nodemon ./src/index.ts",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"build": "prisma generate && tsc",
"admin": "node ./src/scripts/addAdmin.js"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.3.0",
"@clerk/clerk-sdk-node": "^4.13.3",
"@graphql-tools/schema": "^9.0.13",
"@prisma/client": "^5.7.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"graphql": "^16.6.0",
"graphql-scalars": "^1.20.1",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.11.2",
"handlebars": "^4.7.7",
"imagekit": "^4.1.3",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"node-cron": "^3.0.2",
"nodemailer": "^6.9.2",
"npm": "^9.3.0",
"octokit": "^3.1.0",
"stripe": "^12.11.0",
"svix": "^1.15.0",
"web-push": "^3.6.3",
"ws": "^8.12.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.11.18",
"@types/ws": "^8.5.4",
"nodemon": "^2.0.20",
"prisma": "^5.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}