-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
package.json
69 lines (69 loc) · 2.98 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
{
"name": "shadow-test-apkt",
"version": "0.0.4",
"private": true,
"type": "module",
"scripts": {
"prebuild": "node scripts/inject-version.js",
"build:clean": "turbo run build:clean --filter={./packages/*}",
"build:sample-apps": "turbo run build --filter={./examples/*}",
"build:example:wagmi-cdn": "pnpm build; pnpm --filter @examples/html-wagmi-cdn build",
"build:example:vue-wagmi": "pnpm --filter @examples/vue-wagmi build",
"build": "turbo run build --filter={./packages/*} --concurrency=31",
"watch": "turbo run watch --filter={./packages/*,./packages/adapters/*} --concurrency=50 --continue",
"gallery": "turbo run dev --filter={./apps/gallery}",
"laboratory": "pnpm --filter @apps/laboratory dev",
"demo": "turbo run dev --filter={./apps/demo}",
"examples": "turbo run dev --filter={./examples/*}",
"build:gallery": "pnpm build; pnpm --filter=./apps/gallery build",
"build:laboratory": "pnpm build; pnpm --filter=./apps/laboratory build",
"build:demo": "pnpm build; pnpm --filter=./apps/demo build",
"build:examples": "pnpm build; pnpm --filter=./examples -r build",
"test": "turbo run test",
"test:static": "pnpm run typecheck; pnpm run lint; pnpm run prettier",
"coverage:merge": "node ./scripts/coverage-merge.js",
"coverage:summary": "node ./scripts/coverage-summary.js",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"danger": "danger ci",
"prettier": "prettier --check .",
"prettier:format": "prettier --write .",
"clean": "rm -rf `find . -type d -name node_modules -o -name dist -o -name .next -o -name out`; rm pnpm-lock.yaml",
"changeset:pre": "changeset pre enter",
"changeset:pre:exit": "changeset pre exit",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "pnpm publish:latest",
"publish:latest": "pnpm install; pnpm build; changeset publish",
"publish:alpha": "pnpm install; pnpm build; changeset publish --tag alpha",
"publish:beta": "pnpm install; pnpm build; changeset publish --tag beta",
"publish:canary": "pnpm install; pnpm build; changeset publish --tag canary",
"prepare": "husky"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"@vitest/coverage-v8": "2.1.3",
"danger": "11.3.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-require-extensions": "0.1.3",
"husky": "9.0.11",
"prettier": "3.1.1",
"turbo": "2.0.6-canary.0",
"typescript": "5.3.3",
"vite": "5.2.11",
"vitest": "2.1.3",
"vite-plugin-node-polyfills": "0.22.0",
"pino": "7.11.0"
},
"packageManager": "pnpm@9.5.0",
"pnpm": {
"patchedDependencies": {
"@synthetixio/synpress-metamask@0.0.1-alpha.7": "patches/@synthetixio__synpress-metamask@0.0.1-alpha.7.patch"
}
}
}