This repository was archived by the owner on Nov 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 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
{
"name": "canchu",
"version": "1.0.0",
"description": "simple social media website",
"main": "src/index.ts",
"scripts": {
"build": "rm -rf dist && npx tsc",
"test": "MODE=test mocha",
"test:coverage": "MODE=test c8 mocha",
"serve": "rm -rf dist && npx tsc && node dist/src/index.js"
},
"author": "timsu92",
"license": "SEE LICENSE IN LICENSE",
"type": "module",
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.19.2",
"ioredis": "^5.3.2",
"jose": "^4.15.5",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.11.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.17",
"zod": "^3.22.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.3.5",
"@types/cli-progress": "^3.11.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/k6": "^0.45.1",
"@types/mocha": "^10.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^20.3.3",
"@types/supertest": "^2.0.12",
"c8": "^8.0.1",
"chai": "^4.3.7",
"cli-progress": "^3.12.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}