-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.1 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.1 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
71
72
73
74
{
"name": "fileflash-backend",
"version": "1.0.0",
"description": "Backend for FileFlash personal cloud disk",
"main": "dist/server.ts",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon --exec ts-node src/server.ts",
"build": "tsc --noEmitOnError false",
"build:strict": "tsc",
"init-db": "ts-node src/models/init.ts",
"test": "jest",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix"
},
"dependencies": {
"@types/express-validator": "^2.20.33",
"apollo-server-express": "^3.12.1",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"diff-match-patch": "^1.0.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^8.0.1",
"express-validator": "^7.2.1",
"graphql": "^16.8.1",
"graphql-scalars": "^1.24.2",
"graphql-upload": "^16.0.0",
"helmet": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"lru-cache": "^11.1.0",
"lz4": "^0.6.3",
"multer": "^1.4.5-lts.1",
"node-cache": "^5.1.2",
"node-cron": "^4.2.1",
"pg": "^8.11.3",
"redis": "^4.7.1",
"reflect-metadata": "^0.1.13",
"sharp": "^0.32.4",
"socket.io": "^4.8.1",
"sqlite3": "^5.1.7",
"typeorm": "^0.3.17",
"uuid": "^9.0.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/diff-match-patch": "^1.0.36",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.2",
"@types/mime-types": "^3.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^20.5.0",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.10.2",
"@types/socket.io": "^3.0.1",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"jest": "^29.6.2",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}