-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.45 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
{
"name": "youth-api",
"version": "1.0.0",
"description": "API for youth APP",
"main": "app.ts",
"scripts": {
"start": "node dist/app.js",
"build": "tsc",
"dev": "concurrently \"npx tsc --watch\" \"nodemon dist/app.js\"",
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KridiRamilli/youth-API.git"
},
"keywords": [
"youth",
"app",
"e-commerce"
],
"author": "Kridi Ramilli",
"license": "ISC",
"bugs": {
"url": "https://github.com/KridiRamilli/youth-API/issues"
},
"homepage": "https://github.com/KridiRamilli/youth-API#readme",
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/supertest": "^2.0.12",
"husky": "^8.0.3",
"prisma": "^4.13.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@prisma/client": "^4.13.0",
"@types/express": "^4.17.17",
"@types/node": "^18.15.11",
"bcrypt": "^5.1.0",
"concurrently": "^8.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"helmet": "^6.1.5",
"jest": "^29.5.0",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"winston": "^3.8.2",
"xss-clean": "^0.1.1",
"zod": "^3.21.4"
}
}