-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1003 Bytes
/
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
{
"name": "capstone-project",
"version": "1.0.0",
"homepage": "http://flixbuddies.herokuapp.com/",
"description": "",
"main": "server/src/server.js",
"scripts": {
"postinstall": "cd ./client && npm install && cd ../server && npm install",
"client": "cd ./client && npm start",
"server": "nodemon ./server/src/server.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"start": "node ./server/src/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd ./client && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielmolnar/capstone-project.git"
},
"author": "Daniel Molnar",
"license": "ISC",
"bugs": {
"url": "https://github.com/danielmolnar/capstone-project/issues"
},
"devDependencies": {
"concurrently": "^6.2.1",
"mongodb": "^4.1.1",
"nodemon": "^2.0.12"
},
"dependencies": {
"dotenv": "^10.0.0"
},
"proxy": "http://localhost:4000"
}