-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 829 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 829 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": "user-based-content",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm-run-all --parallel start-client start-server",
"start-server": "cd server && npm start",
"start-client": "cd client && npm start",
"postinstall": "npm-run-all --parallel install-client install-server",
"install-server": "cd server && npm i",
"install-client": "cd client && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victorwikstrom/user-based-content.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/victorwikstrom/user-based-content/issues"
},
"homepage": "https://github.com/victorwikstrom/user-based-content#readme",
"dependencies": {
"npm-run-all": "^4.1.5"
}
}