forked from TribalyteTechnologies/BrightByte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
23 lines (23 loc) · 891 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
{
"name": "brightbyte",
"version": "0.0.1",
"description": "This is the BrightByte developer reputation project.",
"main": "",
"scripts": {
"start": "yarn start:blockchain; yarn start:webapp && yarn start:backend",
"postinstall": "cd blockchain && yarn install && cd ../webapp && yarn install && cd ../backend && yarn install",
"uninstall": "shx rm -fr node_modules/ backend/node_modules/ blockchain/node_modules/ webapp/node_modules/",
"start:blockchain": "cd ./blockchain; yarn start",
"start:webapp": "cd ./webapp; yarn wait:start",
"start:backend": "cd ./backend; yarn start",
"linters-ci": "cd webapp; yarn linters-ci",
"postlinters-ci": "cd backend; yarn linters-ci"
},
"author": "Tribalyte Technologies",
"license": "SEE LICENSE IN LICENSE.md",
"private": true,
"devDependencies": {
"shx": "^0.3.2",
"yarn": "^1.22.5"
}
}