-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.3 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.3 KB
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
{
"name": "nodeapp",
"version": "1.0.0",
"description": "Simple Twitter Clone",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/colinmaher/nodeapp.git"
},
"author": "Colin Maher",
"license": "ISC",
"bugs": {
"url": "https://github.com/colinmaher/nodeapp/issues"
},
"homepage": "https://github.com/colinmaher/nodeapp#readme",
"scripts": {
"postinstall": "run-p install:server install:client",
"install:server": "cd server && npm install",
"install:client": "cd client && npm install",
"start": "npm run start:server && npm run start:client",
"start:dev": "concurrently --kill-others-on-fail \"npm run start:server\" \"npm run start:client\"",
"start:server": "npm run start:prod --prefix server",
"start:client": "npm run start --prefix client",
"build": "run-p build:client build:server",
"build:client": "cd client && npm run build",
"build:server": "cd server && npm run build",
"update": "run-p update:server update:client",
"update:server": "cd server && npm update",
"update:client": "cd client && npm update"
},
"devDependencies": {
"concurrently": "^4.1.2",
"npm-run-all": "^4.0.2"
},
"cacheDirectories": [
"server/node_modules",
"client/node_modules"
]
}