-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.87 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.87 KB
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": "engraph-backend",
"version": "1.0.0",
"description": "Engraph Backend",
"main": "src/server.ts",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc && npx resolve-tspaths",
"postinstall": "npx prisma generate",
"commit": "npx git-cz",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Engraph-dev/engraph-backend.git"
},
"author": "Engraph.dev",
"license": "ISC",
"bugs": {
"url": "https://github.com/Engraph-dev/engraph-backend/issues"
},
"homepage": "https://github.com/Engraph-dev/engraph-backend#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.675.0",
"@aws-sdk/client-sqs": "^3.723.0",
"@aws-sdk/s3-request-presigner": "^3.675.0",
"@paralleldrive/cuid2": "^2.2.2",
"@prisma/client": "^6.2.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"jsonwebtoken": "^9.0.2",
"neo4j-driver": "^5.27.0",
"node-cron": "^3.0.3",
"octokit": "^4.0.3",
"openai": "^4.79.4",
"prisma": "^6.2.0",
"resend": "^4.0.0",
"resolve-tspaths": "^0.8.22",
"validator": "^13.12.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/bcryptjs": "^2.4.6",
"@types/body-parser": "^1.19.5",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.7.7",
"@types/node-cron": "^3.0.11",
"@types/validator": "^13.12.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.3"
},
"lint-staged": {
"*.{ts,js,css,md}": "prettier --write"
}
}