-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
57 lines (57 loc) · 1.84 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
52
53
54
55
56
57
{
"name": "regen-js",
"version": "1.0.0-alpha5",
"author": "[email protected]",
"description": "Regen Network does JavaScript",
"license": "Apache-2.0",
"private": true,
"repository": "https://github.com/regen-network/regen-js",
"workspaces": [
"packages/*"
],
"publishConfig": {
"access": "restricted"
},
"scripts": {
"clean": "lerna run clean",
"build:api": "yarn workspace @regen-network/api build",
"build": "lerna run build --stream",
"lerna:deploy": "yarn build && lerna version --conventional-commits && lerna publish from-git",
"lint": "eslint --ext js,ts,tsx .",
"test": "lerna run test --stream --scope @regen-network/api",
"codegen": "lerna run codegen --stream --scope @regen-network/api",
"start": "yarn workspace @regen-network/api-demo start",
"symlink": "symlink-workspace --logLevel error",
"postinstall": "yarn symlink"
},
"devDependencies": {
"@protobufs/amino": "^0.0.11",
"@protobufs/cosmos": "^0.1.0",
"@protobufs/cosmos_proto": "^0.0.10",
"@protobufs/cosmwasm": "^0.1.1",
"@protobufs/gogoproto": "^0.0.10",
"@protobufs/google": "^0.0.10",
"@protobufs/ibc": "^0.1.0",
"@protobufs/regen": "^0.1.0",
"@protobufs/tendermint": "^0.0.10",
"@types/jest": "^29.5.11",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unused-imports": "^4.0.0",
"jest": "^29.6.2",
"lerna": "^6",
"prettier": "^3.0.2",
"rimraf": "4.4.1",
"strip-ansi": "^5",
"symlink-workspace": "^1.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.1.6"
}
}