-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.36 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
51
{
"name": "server",
"version": "0.0.1",
"description": "Ride share app backend",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"start": "tsc && node ./dist/bin/www",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rideshareapp/server.git"
},
"author": "",
"bugs": {
"url": "https://github.com/rideshareapp/server/issues"
},
"homepage": "https://github.com/rideshareapp/server#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/node": "^15.12.4",
"@types/pg": "^8.6.0",
"@types/redis": "^2.8.30",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"eslint": "^9.39.1",
"typescript": "^4.3.4"
},
"dependencies": {
"@types/jsonwebtoken": "^8.5.2",
"@types/passport": "^1.0.6",
"@types/passport-local": "^1.0.33",
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.21.2",
"handy-redis": "^2.2.2",
"helmet": "^4.6.0",
"jsonwebtoken": "^9.0.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"pg": "^8.6.0",
"redis": "^3.1.2"
}
}