forked from evmts/tevm-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 3.05 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
{
"name": "@tevm/root",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/evmts/tevm-monorepo.git"
},
"license": "MIT",
"contributors": [
"Will Cory <[email protected]>"
],
"type": "commonjs",
"scripts": {
"all": "nx run-many --targets=generate:docs,build:types,typecheck,test:coverage,build:dist,dev:run,build:app --parallel=5",
"all:clean": "bun clean && pnpm i && bun allz",
"allz": "concurrently 'pnpm i' 'bun lint' 'bun sort-package-json' && nx run-many --parallel=5 --targets=generate:docs,build:types,typecheck,test:coverage,build:dist,dev:run,build:app,lint:package,lint:deps,lint,format",
"build": "nx run-many --targets=build:dist,build:app,build:types",
"build:app": "nx run-many --target=build:app",
"build:dist": "nx run-many --target=build:dist",
"build:types": "nx run-many --targets=build:types,typecheck",
"clean": "nx run-many --target=clean && rm -rf node_modules && rm -rf .nx",
"e2e": "nx e2e e2e",
"format:check": "rome format .",
"generate:docs": "nx run-many --target=generate:docs",
"lint": "rome check . --apply-unsafe && rome format . --write",
"lint:check": "rome check .",
"lint:deps": "bunx depcheck && nx run-many --target=lint:deps",
"lint:package": "nx run-many --target=lint:package",
"release:check": "changeset status --verbose --since=origin/main",
"release:publish": "pnpm install && nx run-many --target=build:dist,build:types --skip-nx-cache && changeset publish",
"release:version": "changeset version && pnpm install --lockfile-only",
"sort-package-json": "sort-package-json package.json apps/*/package.json bundler-packages/*/package.json configs/*/package.json examples/*/package.json experimental/*/package.json extensions/*/package.json packages/*/package.json tevm/package.json bundler/package.json",
"sort-package-json:check": "sort-package-json package.json docs/package.json bundler/*/package.json configs/*/package.json examples/*/package.json experimental/*/package.json extensions/*/package.json packages/*/package.json && git diff --exit-code tevm/package.json bundler/package.json",
"test": "bun test:run",
"test:coverage": "nx run-many --target=test:coverage --skip-nx-cache",
"test:run": "nx run-many --target=test:run",
"up": "bun x npm-check-updates -ui -ws"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.13.5",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.6",
"bun": "^1.0.26",
"bun-types": "^1.0.26",
"concurrently": "^8.2.2",
"depcheck": "^1.4.7",
"dotenv": "^16.3.2",
"gitmoji-cli": "^8.4.0",
"nx": "18.0.4",
"publint": "^0.2.7",
"rome": "^12.1.3",
"sort-package-json": "^2.5.1",
"starlight-typedoc": "^0.8.0",
"tsup": "^8.0.1",
"typedoc": "^0.25.0",
"typedoc-plugin-markdown": "4.0.0-next.21",
"typescript": "^5.3.3",
"vite": "^5.0.6",
"vitest": "^0.34.6"
},
"engines": {
"node": ">=18"
}
}