-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "app",
"version": "1.0.0",
"description": "web app providing refurbished tech devices to refugee communities to improve digital inclusion. Made in only 1.5 day for the Athena Hackathon on June 11th, 2022!",
"main": "api/index.js",
"engines": {
"npm": "8.11.0",
"node": "v16.15.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node api/index.ts",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^17.0.42",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"csurf": "^1.9.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"path": "^0.12.7",
"pg": "^8.7.3",
"ts-node": "^10.8.1",
"typescript": "^4.7.3",
"util": "^0.12.4"
}
}