-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
32 lines (32 loc) · 1.01 KB
/
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
32
{
"name": "lunie",
"version": "2.0.0",
"description": "Lunie Staking Platform Mono Repository",
"main": "index.js",
"repository": "https://github.com/luniehq/lunie.git",
"author": "hello@lunie.io",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"app",
"api",
"extension",
"scriptRunner"
],
"scripts": {
"changelog:api": "cd api && yarn changelog",
"changelog:app": "cd app && yarn changelog",
"changelog:extension": "cd extension && yarn changelog",
"changelog:scriptrunner": "cd scriptRunner && yarn changelog",
"start": "cd api && yarn start",
"serve": "cd app && yarn serve",
"serve:win": "cd app && yarn serve:win",
"lint:global": "cd api && yarn lint --fix && cd .. && cd app && yarn lint --fix && cd .. && cd extension && yarn lint:fix && cd ..",
"release:api": "bash release.sh api",
"release:app": "bash release.sh app",
"release:extension": "bash release.sh extension"
},
"resolutions": {
"node-addon-api": "^2.0.1"
}
}