forked from giliyoffe/Fibbage-Diconium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 985 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
{
"name": "fibbage-diconium",
"version": "1.0.0",
"description": "boilerplate for fibbage diconium",
"main": "index.js",
"scripts": {
"install": "cd client && npm install && cd .. && cd server1 && npm install",
"client": "cd client && npm run start",
"server": "cd server1 && npm run start",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cd server1 && node index.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giliyoffe/Fibbage-Diconium.git"
},
"author": "diconium staffers",
"license": "MIT",
"bugs": {
"url": "https://github.com/giliyoffe/Fibbage-Diconium/issues"
},
"homepage": "https://github.com/giliyoffe/Fibbage-Diconium#readme",
"dependencies": {
"express": "^4.17.1"
}
}