-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "filmtracker",
"version": "0.1.0",
"description": "Filmtracker for my friends and I.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon server.js",
"client": "npm start --prefix frontend",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd frontend && npm install && npm run build"
},
"author": "Cisco Ducasse",
"license": "MIT",
"devDependencies": {
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"nodemon": "^2.0.6"
},
"dependencies": {
"axios": "^0.21.0",
"bcrypt": "^5.0.0",
"connect-mongo": "^3.2.0",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.8",
"mongoose": "^5.10.17",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"react-spring-bottom-sheet": "^3.1.4",
"react-swipeable-bottom-sheet": "^1.1.2"
}
}