forked from wevm/wagmi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.45 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
{
"name": "root",
"scripts": {
"build": "preconstruct build",
"build:docs": "manypkg run docs build",
"changeset:release": "pnpm gen:readme && pnpm build && changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"dev": "preconstruct dev",
"dev:docs": "pnpm build && manypkg run docs dev",
"dev:example:next": "pnpm build && manypkg run example-next dev",
"dev:example:remix": "pnpm build && manypkg run example-remix dev",
"dev:example:vite-react": "pnpm build && manypkg run example-vite-react dev",
"gen:readme": "pnpm node scripts/copyReadme.js",
"lint": "eslint --cache",
"lint:fix": "pnpm lint --fix",
"lint:format": "prettier --write",
"lint:types": "tsc --noEmit",
"postinstall": "husky install && preconstruct dev",
"preinstall": "npx only-allow pnpm",
"size": "size-limit",
"test": "jest --coverage",
"test:watch": "jest --watch",
"watch": "preconstruct watch"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"pnpm lint:fix"
],
"*.{json,md,mdx,yml}": [
"pnpm lint:format"
]
},
"preconstruct": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.19.0",
"@manypkg/cli": "^0.19.1",
"@preconstruct/cli": "^2.1.5",
"@size-limit/preset-big-lib": "^7.0.5",
"@swc-node/jest": "^1.4.3",
"@testing-library/jest-dom": "^5.16.1",
"@types/eslint": "^7",
"@types/jest": "^27.0.3",
"@types/prettier": "^2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-mdx": "^1.16.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.0.1",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"jest-watch-typeahead": "^1.0.0",
"lint-staged": "^12.0.3",
"prettier": "^2.4.1",
"size-limit": "^7.0.5",
"typescript": "^4.5.4"
}
}