forked from aviggiano/judgementalist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 798 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
29
30
31
{
"name": "judgementalist",
"keywords": [
"sherlock",
"smart",
"contracts",
"audit"
],
"version": "1.1.2",
"scripts": {
"prepublish": "yarn frontend && yarn backend && chmod +x backend/build/index.js",
"frontend": "( cd frontend && yarn && yarn build )",
"backend": "( cd backend && yarn && yarn build )"
},
"files": [
"backend/build",
"frontend/build"
],
"bin": {
"judgementalist": "backend/build/index.js"
},
"dependencies": {
"axios": "^1.4.0",
"dotenv": "^16.0.3",
"express": "^4.18.2"
},
"description": "Judgementalist — judge Sherlock contests faster",
"repository": "[email protected]:aviggiano/judgementalist.git",
"author": "Antonio Guilherme Ferreira Viggiano <[email protected]>",
"license": "MIT"
}