forked from wevm/wagmi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.9 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
{
"name": "root",
"scripts": {
"build": "preconstruct build",
"changeset:release": "pnpm build && changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"dev": "preconstruct dev",
"dev:docs": "pnpm dev && pnpm --filter docs dev",
"dev:playground": "pnpm dev && pnpm --filter example-dev dev",
"dev:example:cra": "pnpm build && pnpm --filter example-cra start",
"dev:example:next": "pnpm build && pnpm --filter example-next dev",
"dev:example:remix": "pnpm build && pnpm --filter example-remix dev",
"dev:example:vite-react": "pnpm build && pnpm --filter example-vite-react dev",
"hardhat:dev": "pnpm hardhat node --config .config/hardhat.config.ts",
"lint": "eslint . --cache",
"lint:fix": "pnpm lint --fix",
"lint:format": "prettier --write",
"lint:types": "tsc --noEmit",
"postinstall": "husky install .config/husky && preconstruct dev",
"preinstall": "npx only-allow pnpm",
"size": "bundlewatch --config .config/bundlewatch.config.js",
"test": "jest --coverage",
"test:ci": "start-server-and-test hardhat:dev http://127.0.0.1:8545 test",
"test:size": "pnpm build && pnpm size",
"test:watch": "jest --watch"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"pnpm lint:fix"
],
"*.{json,md,mdx,yml}": [
"pnpm lint:format"
]
},
"preconstruct": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.22.0",
"@ethersproject/providers": "^5.6.5",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@preconstruct/cli": "^2.1.5",
"@swc-node/jest": "^1.5.2",
"@testing-library/jest-dom": "^5.16.4",
"@types/eslint": "^8.4.3",
"@types/jest": "^27.5.0",
"@types/node": "17.0.21",
"@types/prettier": "^2.6.0",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"bundlewatch": "^0.3.3",
"dotenv": "^11.0.0",
"eslint": "8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-mdx": "^1.17.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-testing-library": "^5.5.1",
"ethers": "^5.6.5",
"hardhat": "^2.9.6",
"husky": "^7.0.4",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-watch-typeahead": "^1.1.0",
"lint-staged": "^12.4.1",
"msw": "^0.39.2",
"prettier": "^2.6.2",
"start-server-and-test": "^1.14.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}