-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.61 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
{
"name": "quedoor-backend",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"test": "echo \"no test specified\" && exit 1",
"start": "nodemon src/index.ts",
"server": "ts-node src/index.ts",
"build": "tsc",
"ts.check": "tsc --project tsconfig.json",
"add-build": "git add dist",
"lint": "eslint --fix ./src/*.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@neo4j/graphql-ogm": "^4.2.0",
"bcrypt": "^5.1.1",
"cloudinary": "^1.41.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.0",
"graphql": "^16.8.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.2",
"multer": "^1.4.5-lts.1",
"neo4j-driver": "^5.13.0",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"redis": "^4.6.10",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.2",
"sequelize-typescript": "^2.1.6",
"string-similarity": "^4.0.4",
"tesseract.js": "^5.0.3",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.3",
"@types/multer": "^1.4.8",
"@types/node": "^20.12.4",
"@types/validator": "^13.11.9",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"concurrently": "^8.2.1",
"eslint": "^8.50.0",
"nodemon": "^3.0.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}