forked from tqtezos/minter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 846 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
{
"scripts": {
"gen:gql": "graphql-codegen && prettier --write server/src/generated/graphql_schema.ts client/src/generated/graphql_schema.tsx",
"postinstall": "bin/init-dev",
"start": "bin/start dev-sandbox",
"start:sandbox": "bin/start dev-sandbox",
"start:testnet": "bin/start dev-testnet",
"start:mainnet": "bin/start dev-mainnet",
"stop": "bin/stop dev-sandbox",
"stop:sandbox": "bin/stop dev-sandbox",
"stop:testnet": "bin/stop dev-testnet",
"stop:mainnet": "bin/stop dev-mainnet",
"log": "bin/log",
"log:api": "bin/log api",
"log:ui": "bin/log ui"
},
"devDependencies": {
"@types/async-retry": "^1.4.2",
"@types/configstore": "^4.0.0",
"prettier": "^2.0.5"
},
"dependencies": {
"async-retry": "^1.3.1",
"configstore": "^5.0.1",
"ts-node": "^9.1.1"
}
}