-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
30 lines (30 loc) · 955 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
{
"name": "project3",
"version": "1.0.0",
"description": "solo traveler",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js --ignore client",
"develop": "concurrently \"cd server && npm run watch\" \"cd client && npm start\"",
"install": "cd server && npm i && cd ../client && npm i",
"seed": "cd server && npm run seed",
"build": "cd client && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SSimonPhd/project3.git"
},
"author": "Catherine Polk, Erica Morabito, Adrian Brown, Michael Alvarado, Scott Simon",
"license": "MIT",
"bugs": {
"url": "https://github.com/SSimonPhd/project3/issues",
"homepage": "https://github.com/SSimonPhd/project3#readme"
},
"devDependencies": {
"concurrently": "^7.6.0",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.3"
}
}