-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
68 lines (68 loc) · 2.41 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
{
"name": "blobscan-monorepo",
"version": "1.1.0",
"private": true,
"engines": {
"node": "18.x"
},
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build",
"changeset:release": "pnpm build && changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"db:generate": "turbo db:generate",
"db:push": "turbo db:push db:generate",
"db:studio": "pnpm -F db dev",
"dev": "turbo dev --parallel",
"format": "prettier --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\" --ignore-path .gitignore",
"lint": "turbo lint && manypkg check",
"lint:fix": "turbo lint:fix && manypkg fix",
"start": "turbo start",
"test": "pnpm with-env:test vitest",
"coverage": "pnpm with-env:test vitest --coverage",
"test:ui": "pnpm with-env:test vitest --ui",
"test:setup": "turbo test:setup",
"test:dev": "pnpm test:setup && pnpm test",
"type-check": "turbo type-check",
"stats": "pnpm with-env pnpm -F stats-aggregation-cli start",
"propagator": "pnpm with-env pnpm -F blob-propagation-jobs-cli start",
"svg:format": "turbo svg:format",
"validate": "turbo lint type-check && manypkg check && pnpm test",
"with-env": "dotenv -e .env --",
"with-env:test": "dotenv -e .env.test --"
},
"dependencies": {
"@blobscan/eslint-config": "workspace:^0.0.1",
"@blobscan/eth-units": "workspace:^0.0.1",
"@blobscan/svgo-config": "workspace:^0.0.1",
"@blobscan/tailwind-config": "workspace:^0.0.1",
"@blobscan/test": "workspace:^0.0.1",
"@blobscan/tsconfig": "workspace:^0.0.1",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@manypkg/cli": "^0.21.4",
"@next/bundle-analyzer": "^14.1.0",
"@types/command-line-args": "^5.2.2",
"@types/command-line-usage": "^5.0.3",
"@types/node": "^18.16.19",
"@types/prettier": "^2.7.3",
"@vitest/coverage-v8": "^0.34.3",
"@vitest/ui": "^0.34.1",
"dotenv-cli": "^7.2.1",
"msw": "^2.3.1",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"turbo": "^1.10.7",
"typescript": "^5.2.2",
"vitest": "^0.34.1",
"vitest-mock-extended": "^1.2.0"
},
"manypkg": {
"workspaceProtocool": "require"
}
}