-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 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
{
"name": "sm-api",
"version": "1.0.0",
"description": "RESTful API for a social media platform",
"main": "server.ts",
"scripts": {
"test": "jest --coverage",
"start": "ts-node-dev --respawn --transpile-only --exit-child src/app.ts",
"build": "npx tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sauce-kode/sm-api.git"
},
"author": "Damilare Ibiyemi",
"license": "ISC",
"bugs": {
"url": "https://github.com/sauce-kode/sm-api/issues"
},
"homepage": "https://github.com/sauce-kode/sm-api#readme",
"dependencies": {
"app-root-path": "^3.1.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"microdiff": "^1.3.2",
"pg": "^8.11.0",
"pg-hstore": "^2.3.4",
"redis": "^4.6.6",
"sequelize": "^6.31.1",
"winston": "^3.8.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"@types/supertest": "^2.0.12",
"jest": "^29.5.0",
"morgan": "^1.10.0",
"supertest": "^6.3.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
}
}