-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
57 lines (57 loc) · 1.72 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "seattle-produce-delivery-shop",
"version": "1.0.0",
"description": "server-side logic of the delivery shop",
"engines": {
"node": "10.16.0",
"npm": "6.9.0"
},
"author": "Hans",
"scripts": {
"client-install": "npm install --prefix client",
"client": "cd client && npm start",
"server": "nodemon app.js",
"build": "cd client && npm run build",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"start": "node app.js",
"doc": "jsdoc -c jsdoc.json",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"devDependencies": {
"http-proxy-middleware": "^1.0.5",
"jsdoc": "^3.6.4",
"kill-port": "^1.6.1"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"body-parser": "^1.19.0",
"concurrently": "^5.2.0",
"connect-mongodb-session": "^3.1.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"express-session": "^1.17.1",
"http-errors": "~1.6.3",
"lodash": ">=4.17.19",
"mongodb": "^3.5.9",
"mongoose": "^5.13.13",
"morgan": "~1.9.1",
"nodemon": "^2.0.4",
"stripe": "^8.78.0"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/SorviusN/Pandemic-Produce-Delivery-Project.git"
},
"keywords": [],
"license": "ISC",
"bugs": {
"url": "https://github.com/SorviusN/Pandemic-Produce-Delivery-Project/issues"
},
"homepage": "https://github.com/SorviusN/Pandemic-Produce-Delivery-Project#readme"
}