-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "shareplate",
"version": "1.0.0",
"description": "Food sharing social media app api server.",
"main": "dist/server.js",
"scripts": {
"test": "jest",
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"start": "node dist/server.js",
"dev": "nodemon -r tsconfig-paths/register src/server.ts",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "Ty D'Angelo",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-validator": "^7.2.1",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.1",
"tsconfig-paths": "^4.2.0",
"uuid": "^11.0.4",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.1",
"@types/pg": "^8.11.10",
"@types/supertest": "^6.0.2",
"concurrently": "^9.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2"
}
}