-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
33 lines (33 loc) · 957 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
28
29
30
31
32
33
{
"name": "mern",
"version": "0.1.0",
"description": "Mern Starter",
"main": "index.js",
"scripts": {
"server": "cd backend && npm run start",
"server-install": "cd backend && npm install",
"start":"cd frontend && npm run start",
"client": "cd frontend && npm start",
"client-install": "cd frontend && npm install",
"upgrade" : "npm run server-install && npm run client-install",
"dev": "concurrently \"npm run server\" \"npm run start\"",
"setup": "npm install && npm run client-install && npm run server-install && npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mern-stack/mern.git"
},
"keywords": [
"mern",
"starter"
],
"author": "Ritesh Singh",
"license": "MIT",
"bugs": {
"url": "https://github.com/mern-stack/mern/issues"
},
"homepage": "https://github.com/mern-stack/mern#readme",
"dependencies": {
"concurrently": "^4.1.0"
}
}