-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 833 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 833 Bytes
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
{
"name": "e-commerce-placeholder",
"private": true,
"version": "1.0.0",
"main": "server.js",
"homepage": "https://pacific-dawn-34240.herokuapp.com/",
"scripts": {
"dev": "concurrently \"cd server && npm run dev\" \"cd client && npm run dev\"",
"build": "cd client && npm run build",
"install": "cd server && npm i && cd ../client && npm i",
"start": "npm run build && cd server && node server.js",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/client": "^3.7.14",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.3",
"graphql": "^15.8.0",
"jwt-decode": "^3.1.2",
"react-hook-form": "^7.43.9"
},
"devDependencies": {
"concurrently": "^5.2.0"
}
}