forked from wevm/references
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.91 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
{
"name": "@wagmi/references",
"private": true,
"license": "MIT",
"scripts": {
"build": "pnpm -r build",
"changeset:release": "pnpm build && changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"cjs:release": "node -r esbuild-register ./scripts/cjs.ts",
"dev": "pnpm -r dev",
"lint": "eslint .",
"lint:fix": "pnpm lint --fix",
"lint:format": "prettier --write",
"prepare": "npx simple-git-hooks",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@manypkg/get-packages": "^1.1.3",
"@types/dedent": "^0.7.0",
"@types/eslint": "^8.4.10",
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitest/coverage-c8": "^0.25.8",
"@vitest/ui": "^0.25.8",
"dedent": "^0.7.0",
"esbuild": "0.15.13",
"esbuild-register": "^3.4.2",
"eslint": "8.17.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"execa": "^6.1.0",
"fs-extra": "^11.1.0",
"jsdom": "^20.0.3",
"lint-staged": "^13.1.0",
"lokijs": "^1.5.12",
"msw": "^0.49.3",
"prettier": "^2.8.3",
"simple-git-hooks": "^2.8.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vitest": "^0.25.8"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"pnpm lint:fix"
],
"*.{json,md,yml}": [
"pnpm lint:format"
]
},
"repository": {
"type": "git",
"url": "https://github.com/wagmi-dev/references.git"
},
"pnpm": {
"overrides": {
"esbuild": "^0.15.13"
}
}
}