forked from cosmology-tech/telescope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.78 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "telescope",
"version": "0.0.1",
"publishConfig": {
"access": "restricted"
},
"private": true,
"scripts": {
"build": "lerna run prepare --parallel",
"buidl": "lerna run buidl --parallel",
"ast:fixture": "lerna run test:ast --parallel --scope \"@cosmology/ast\"",
"ast:watch": "lerna run test:watch --parallel --scope \"@cosmology/ast\"",
"regen": "lerna run test --parallel --scope \"@cosmology/telescope\"",
"test:min": "lerna run test:min --parallel --scope \"@cosmology/telescope\"",
"test:misc": "lerna run test:misc --parallel --scope \"@cosmology/telescope\"",
"resnap": "lerna run test:update --parallel --scope \"@cosmology/ast\"",
"buidl:clean": "lerna run buidl:clean",
"buidl:ast": "lerna run buidl --parallel --scope \"@cosmology/ast\"",
"buidl:parser": "lerna run buidl --parallel --scope \"@cosmology/proto-parser\"",
"buidl:telescope": "lerna run buidl --parallel --scope \"@cosmology/telescope\"",
"buidl:types": "lerna run buidl --parallel --scope \"@cosmology/types\"",
"bootstrap": "yarn --use-workspaces",
"lint": "lerna run lint",
"format": "lerna run format",
"test": "lerna run test --stream"
},
"devDependencies": {
"eslint": "8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "29.5.0",
"lerna": "7.0.2",
"esprima": "4.0.1",
"prettier": "2.8.7",
"@cosmjs/amino": "^0.32.0",
"@cosmjs/proto-signing": "^0.32.0",
"@cosmjs/stargate": "^0.32.0",
"@cosmjs/tendermint-rpc": "^0.32.0",
"@keplr-wallet/unit": "^0.12.53"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/cosmology-tech/telescope"
},
"dependencies": {
"@jest/transform": "29.5.0"
}
}