-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1.08 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": "eq-networks",
"version": "0.0.0",
"main": "./scripts/lib.js",
"repository": "git@github.com:equilibrium-eosdt/eq-networks.git",
"author": "alex.d@equilibrium.io",
"license": "none",
"private": true,
"scripts": {
"clean:generated": "rm -rf docs && mkdir docs && touch docs/.gitkeep",
"clean:node_modules": "rm -rf node_modules && rm -rf packages/*/node_modules && rm -f yarn.lock",
"fix:versions": "node scripts/version.js",
"generate:injector": "yarn clean:generated && OUT_DIR=`pwd`/docs yarn workspace @equilab/network test && sleep 2 && yarn workspace @equilab/network generate",
"generate:types": "yarn workspace @equilab/types-eq build && yarn workspace @equilab/types-gens build",
"lint:ci": "yarn workspace @marginly/app lint",
"update:force": "yarn clean:node_modules && yarn"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"ts-node": "10.9.1",
"typescript": "5.0.4"
},
"resolutions": {
"@polkadot/api": "10.7.1",
"@polkadot/typegen": "10.7.1",
"typescript": "5.0.4"
}
}