This repository was archived by the owner on Jan 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 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
{
"name": "sharease-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node-dev ./src/main.ts",
"dev": "export DEBUG=*; ts-node-dev ./src/main.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.6",
"@types/koa": "^2.15.0",
"@types/koa-bodyparser": "^4.3.12",
"@types/koa-router": "^7.4.8",
"@types/koa-static": "^4.0.4",
"@types/node": "^22.5.1",
"@types/recursive-readdir": "^2.2.4",
"nodemon": "^3.1.4",
"sequelize-cli": "^6.6.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.2"
},
"dependencies": {
"@sequelize/cli": "^7.0.0-alpha.41",
"bcrypt": "^5.1.1",
"bee-queue": "^1.7.1",
"dotenv": "^16.4.5",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"koa": "^2.15.3",
"koa-body": "^6.0.1",
"koa-context-validator": "^1.0.0",
"koa-jwt": "^4.0.4",
"koa-router": "^12.0.1",
"koa-static": "^5.0.0",
"mongodb": "^6.8.0",
"mongoose": "^8.4.5",
"recursive-readdir": "^2.2.3",
"sequelize": "^6.37.3",
"sqlite3": "^5.1.7",
"winston": "^3.13.0"
}
}