-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 865 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 865 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
{
"name": "results-interface",
"version": "1.7.1",
"description": "Everscale (ex. Free TON) Contests Results Interface",
"main": "server.js",
"scripts": {
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"yarn client\" \"yarn server\"",
"client": "cd client && yarn start",
"client:build": "cd client && yarn build",
"client:modules": "cd client && npm install",
"docker:run": "docker run -t -i --env NODE_ENV=production --env PORT=3001 -p 3001:3001 contests"
},
"repository": "https://github.com/Strafi/Everscale-Contests-Results-Interface.git",
"author": "Anton Solodkov <anton.solodkof@gmail.com>",
"license": "MIT",
"dependencies": {
"concurrently": "^6.0.0",
"cors": "^2.8.5",
"excel4node": "^1.7.2",
"express": "^4.17.1",
"nodemon": "^2.0.7"
}
}