-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
34 lines (34 loc) · 910 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
34
{
"name": "space-escape",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run watch --prefix server",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run start\" \"npm run client\"",
"install": "cd server && npm i && cd ../client && npm i",
"seed": "cd server && node seeds/index.js",
"prebuild": "npm run seed",
"build": "cd client && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pbyakod/space-escape.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pbyakod/space-escape/issues"
},
"homepage": "https://github.com/pbyakod/space-escape#readme",
"dependencies": {
"compression": "^1.7.4",
"mongoose": "^5.5.15",
"morgan": "^1.9.1"
},
"devDependencies": {
"concurrently": "^6.2.1"
}
}