-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.97 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
58
59
60
{
"name": "desmjs-monorepo-root",
"description": "Root for the DesmJS monorepo",
"private": true,
"contributors": [
"Manuel Turetta <[email protected]>",
"Riccardo Montagnin <[email protected]>"
],
"license": "Apache-2.0",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"*.md",
"!*.spec.*",
"!**/testdata/"
],
"repository": {
"type": "git",
"url": "https://github.com/desmos-labs/dapp-sdk"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"workspaces": [
"docs",
"packages/*",
"examples/*"
],
"scripts": {
"build": "yarn workspaces foreach --no-private --topological-dev --parallel --verbose run build",
"build:examples": "yarn workspaces foreach --include '*example*' --topological-dev --parallel --verbose run build",
"build-docs": "DOCS_DOMAIN=desmjs.desmos.network yarn workspace desmjs-documentation build",
"lint": "yarn workspaces foreach --no-private --topological-dev --parallel --verbose run lint",
"lint-fix": "yarn workspaces foreach --no-private --topological-dev --parallel --verbose run lint-fix",
"publish-latest": "yarn workspaces foreach --no-private exec yarn npm publish"
},
"devDependencies": {
"@desmoslabs/desmjs": "workspace:packages/core",
"@desmoslabs/desmjs-types": "workspace:packages/types",
"@types/long": "^4.0.1",
"@types/pino": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"ts-jest": "^29.1.2",
"tsc": "^2.0.4",
"typescript": "^4.9.5"
},
"packageManager": "[email protected]"
}