-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 717 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 717 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
{
"name": "HelloVoterSuite",
"version": "2.1.0",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/hellovoter"
},
"description": "",
"main": "index.js",
"scripts": {
"database": "cd server && npm run database",
"makeadmin": "cd server && npm run makeadmin --",
"test": "cd server && npm test",
"ncu": "ncu && cd client && ncu && cd ../server && ncu",
"client": "cd client && npm install && npm start",
"server": "cd server && npm install && npm start",
"start": "concurrently -k \"npm run client\" \"npm run server\""
},
"keywords": [],
"author": "Our Voice USA",
"license": "AGPL-3.0",
"devDependencies": {
"concurrently": "^5.1.0"
}
}