-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 851 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 851 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
29
30
31
{
"name": "arca",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"client-install": "cd client/; yarn; cd ..",
"start": "node server.js",
"server": "nodemon server.js",
"client": "cd client/; yarn start; cd ..",
"dev": "concurrently \"yarn run server\" \"yarn run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Flash-Git/Arca.git"
},
"author": "Flash",
"license": "ISC",
"dependencies": {
"concurrently": "^4.1.1",
"express": "^4.17.1"
},
"devDependencies": {
"nodemon": "^1.19.1"
},
"bugs": {
"url": "https://github.com/Flash-Git/Arca/issues"
},
"homepage": "https://github.com/Flash-Git/Arca#readme"
}