-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (43 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
36
37
38
39
40
41
42
43
44
{
"name": "rescue-chow",
"version": "1.0.0",
"description": "",
"main": "server/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"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",
"seed": "cd server && npm run seed",
"build": "cd client && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tarajevans/rescue-chow"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tarajevans/rescue-chow/issues"
},
"homepage": "https://github.com/tarajevans/rescue-chow#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"apollo-server-express": "^3.10.3",
"bcrypt": "^5.1.0",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.5",
"stripe": "^10.15.0"
},
"devDependencies": {
"concurrently": "^5.1.0",
"nodemon": "^2.0.20"
},
"engines": {
"node": "16.x"
}
}