-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.23 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
{
"name": "fare-dash-backend",
"version": "1.0.0",
"description": "> Police officers are hiding in train stations, to get people who cannot afford the $2.75 fee. They’re preying on black youth, using that as an excuse to stop and frisk and to fill their monthly quotas. Fare Dash is a full stack application designed to help users stay aware/notified of police presence in train stations. > ## Technologies > - Javascript > - Express > - Node > - PostgresQL",
"main": "index.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"db:migrate": "knex migrate:latest",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fare-Dash-NYC/Fare-Dash-Backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Fare-Dash-NYC/Fare-Dash-Backend/issues"
},
"homepage": "https://github.com/Fare-Dash-NYC/Fare-Dash-Backend#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"knex": "^2.0.0",
"node-fetch": "^3.2.4",
"pg": "^8.7.3",
"sqlite3": "^5.0.8"
},
"devDependencies": {
"nodemon": "^2.0.16"
}
}