-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 915 Bytes
/
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
{
"name": "book-search-engine",
"version": "1.0.0",
"description": "",
"main": "server/server.js",
"Important for MERN Setup": {
"line-10": "We use this top-level package.json file to define scripts we can run to control our entire application from the same CLI location",
"line-21": "The concurrently npm tool allows us to execute two CLI processes... concurrently!"
},
"scripts": {
"start": "node server/server.js",
"develop": "concurrently \"cd server && npm run watch\" \"cd client && npm run dev\"",
"install": "cd server && npm i && cd ../client && npm i",
"build": "cd client && npm run build",
"render-build": "npm install && npm run build"
},
"keywords": [],
"author": "Arnaldo Sepulveda",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.0"
},
"dependencies": {
"apollo-server-express": "^3.13.0",
"graphql": "^16.8.1"
}
}