-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "speer-notes",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"dev": "nodemon src/server/.ts",
"build": "tsc -p .",
"start": "node dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/markdown-it": "^13.0.7",
"@types/uuid": "^9.0.7",
"jest": "^29.7.0",
"prisma": "^5.7.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@prisma/client": "^5.7.1",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.5",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"jest-mock-extended": "^3.0.5",
"jose": "^5.2.0",
"jsonwebtoken": "^9.0.2",
"markdown-it": "^14.0.0",
"rate-limit-redis": "^4.2.0",
"redis": "^4.6.12",
"uuid": "^9.0.1"
}
}