-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 1.07 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": "travel-planner",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"develop": "concurrently \"cd server && npm run watch\" \"cd client && npm start\"",
"install": "cd server && npm i && cd ../client && npm i",
"build": "cd client && npm run build",
"seed": "cd server && npm run seed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jgray33/travel-planner.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jgray33/travel-planner/issues"
},
"homepage": "https://github.com/jgray33/travel-planner#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"apollo-client": "^2.6.10",
"bcrypt": "^5.0.1",
"concurrently": "^7.2.1",
"dotenv": "^16.0.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"nodemon": "^2.0.16",
"react-modal": "^3.15.1"
}
}