-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 975 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": "clh-arcade-server",
"version": "1.0.0",
"description": "Leaderboard and tracking for Command Line Heroes Arcade machines",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"parse-server-dev": "mongodb-runner start && parse-server --appId CLH --masterKey CLH --databaseURI mongodb://localhost/clh",
"parse-server": "parse-server --appId CLH --masterKey CLH --databaseURI mongodb://localhost/clh",
"populate-leaders": "sh ./populate_leaders.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redhataccess/clh-arcade-server.git"
},
"author": "Red Hat, Inc.",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/redhataccess/clh-arcade-server/issues"
},
"homepage": "https://github.com/redhataccess/clh-arcade-server#readme",
"dependencies": {
"parse-server": "^3.3.0"
},
"devDependencies": {
"mongodb-runner": "^4.7.1"
}
}