-
Notifications
You must be signed in to change notification settings - Fork 125
/
package.json
92 lines (92 loc) · 2.61 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "root",
"type": "module",
"private": true,
"engines": {
"node": ">=18.16"
},
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"aa-sdk/*",
"account-kit/*",
"templates/*",
"examples/*",
"site",
"doc-gen",
".vitest"
]
},
"resolutions": {
"wagmi": "2.12.7",
"viem": "2.20.0"
},
"scripts": {
"generate": "turbo run generate",
"postgenerate": "yarn lint:write",
"preinstall": "yarn config set ignore-engines true",
"postinstall": "git submodule update --init --recursive && patch-package",
"build": "is-ci && yarn build:ci || yarn build:dev",
"build:base": "turbo run build --filter=!embedded-accounts-quickstart --filter=!ui-demo",
"build:dev": "yarn build:base --filter=!docs",
"build:ci": "yarn build:base && yarn lint:write",
"build:examples": "turbo run build",
"clean": "yarn clean:turbo && yarn clean:node_modules",
"clean:turbo": "turbo run clean",
"clean:node_modules": "lerna clean -y && rm -rf node_modules",
"docs:gen": "turbo run docs:gen",
"test": "vitest dev",
"test:ci": "vitest run",
"lint:write": "eslint . --fix && yarn docs:gen && prettier --write --ignore-unknown .",
"lint:check": "eslint . && prettier --check .",
"lint:ci:eslint": "eslint --format github $(git diff --name-only origin/main HEAD | xargs)",
"prepare": "husky install",
"version": "yarn build:dev"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@types/prettier": "^2.7.3",
"add": "^2.0.6",
"ak-docgen": "*",
"eslint": "^8.39.0",
"eslint-config-react-app": "^7.0.1",
"eslint-formatter-github": "^1.1.4",
"eslint-formatter-rdjson": "^1.0.6",
"eslint-plugin-eslint-rules": "*",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-mdx": "^3.1.5",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"jsdom": "^25.0.1",
"lerna": "^8.0.2",
"lint-staged": "^13.2.2",
"node-fetch": "^3.3.1",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.8.8",
"prool": "^0.0.15",
"turbo": "^2.2.3",
"viem": "2.20.0",
"vitest": "^2.0.4",
"wagmi": "2.12.7",
"webauthn-p256": "^0.0.10"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "is-ci || lint-staged",
"commit-msg": "npx --no -- commitlint --edit ${1}"
}
},
"lint-staged": {
"**/src/**/*.{tsx,jsx,ts,js}": [
"yarn lint:write"
]
}
}