-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
58 lines (58 loc) · 2.65 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
{
"private": true,
"workspaces": {
"packages": [
"./examples/wallet-connection/*",
"./packages/*",
"./examples/*",
"./docs"
]
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/Concordium/concordium-node-sdk-js"
},
"author": {
"name": "Concordium Software",
"email": "[email protected]",
"url": "https://concordium.com"
},
"type": "module",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "8",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-exports": "^1.0.0-beta.5",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"markdown-link-check": "^3.1.4",
"markdownlint-cli": "^0.34.0",
"prettier": "^3.2.5"
},
"resolutions": {
"@walletconnect/types": "2.13.0",
"@protobuf-ts/runtime-rpc": "2.9.1"
},
"scripts": {
"test-ci": "yarn workspace @concordium/web-sdk run test-ci && yarn workspaces foreach --no-private --exclude @concordium/web-sdk run test",
"test:all": "FORCE_COLOR=true yarn workspaces foreach --no-private run test --passWithNoTests",
"eslint": "eslint . --cache --ext .ts,.tsx --max-warnings 0",
"lint:all": "yarn eslint",
"lint-fix:all": "yar eslint --fix",
"prettier": "prettier ./.*.* ./*.* .github/**/* -u --cache",
"fmt:all": "yarn prettier --write && yarn workspaces foreach --all -p run fmt",
"fmt-check:all": "yarn prettier --check && yarn workspaces foreach --all -p run fmt-check",
"markdown:lint": "markdownlint docs/README.md docs/pages/**/*.md packages/*/README.md examples/*/README.md README.md",
"markdown:lint-fix": "yarn markdown:lint --fix",
"markdown:linkcheck": "markdown-link-check --config .markdown-linkcheck.json docs/README.md docs/pages/**/*.md packages/*/README.md examples/*/README.md README.md",
"build-ci": "FORCE_COLOR=true yarn workspaces foreach -vt run build",
"build:all": "FORCE_COLOR=true yarn workspaces foreach -vt --no-private run build",
"build-dev:all": "FORCE_COLOR=true yarn workspaces foreach -vt --no-private run build-dev",
"clean:all": "FORCE_COLOR=true yarn workspaces foreach -p --no-private run clean",
"size": "yarn build:all && cd packages/sdk && yarn size:no-build",
"size:no-build": "cd packages/sdk && yarn size:no-build"
}
}