-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.16 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "brackette",
"version": "0.3.0",
"description": "Run your challonge tournaments with ease.",
"main": "./server/index.js",
"pkg": {
"assets": [
"./client/build/**/*",
"./client/build/**/*.map"
],
"scripts": [
"./client/build/**/*.js",
"./node_modules/challonge/lib/api/*.js"
],
"targets": [
"node7"
]
},
"bin": {
"brackette": "./server/index.js"
},
"scripts": {
"start": "node ./server/index.js",
"start:dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "nodemon ./server/index.js",
"client": "node ./server/tools/start-client.js",
"package": "pkg -t node7-win . && cd updater && pkg -t node7-win updater.js && cd .."
},
"author": "",
"license": "MIT",
"dependencies": {
"adm-zip": "^0.4.7",
"body-parser": "^1.17.2",
"challonge": "^2.1.0",
"colors": "^1.1.2",
"cookie-parser": "^1.4.3",
"dexie": "^1.5.1",
"dotenv": "^4.0.0",
"download-github-release": "^0.1.3",
"express": "^4.15.3",
"morgan": "^1.8.2",
"socket.io": "^2.0.3"
},
"devDependencies": {
"eslint": "^4.0.0",
"pkg": "^4.1.0"
}
}