-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1.22 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
{
"name": "hermitapp",
"version": "1.0.0",
"description": "Order your favourite items from The Cheesecake Factory online through Hermit!",
"main": "server.js",
"scripts": {
"express": "nodemon src/backend/server.js",
"frontend": "npm start --prefix src/frontend",
"dev": "concurrently \"npm run express\" \"npm run frontend\"",
"build": "npm run build --prefix src/frontend",
"serve": "concurrently \"node src/backend/server.js\" \"serve -s src/frontend/build\"",
"prod": "npm run build & npm run serve",
"deploy": "npm run build && npm run serve"
},
"author": "A-Team",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"firebase-admin": "^9.4.2",
"hasha": "^5.2.2",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"serve": "^11.3.2",
"stripe": "^8.132.0"
},
"devDependencies": {
"eslint": "^7.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"nodemon": "^2.0.6"
}
}