forked from bitrocks/godwoken-web3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.22 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
33
{
"name": "godwoken-web3",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"packages/godwoken",
"packages/api-server",
"packages/*"
],
"scripts": {
"build:godwoken": "yarn workspace @godwoken-web3/godwoken run build",
"build:api-server": "yarn workspace @godwoken-web3/api-server run build",
"build": "yarn workspaces run build",
"fmt": "yarn workspaces run fmt",
"lint": "yarn workspaces run lint",
"knex": "yarn workspace @godwoken-web3/api-server run knex",
"migrate:make": "yarn workspace @godwoken-web3/api-server run migrate:make",
"migrate:latest": "yarn workspace @godwoken-web3/api-server run migrate:latest",
"migrate-accounts": "yarn workspace @godwoken-web3/api-server run migrate-accounts",
"start": "yarn workspace @godwoken-web3/api-server run start",
"start:prod": "yarn workspace @godwoken-web3/api-server run start:prod",
"start:pm2": "yarn workspace @godwoken-web3/api-server run start:pm2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"prettier": "^2.2.1"
},
"version": "0.12.1",
"author": "hupeng <bitrocks.hu@gmail.com>"
}