forked from ponder-sh/ponder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.34 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
{
"name": "ponder-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm --filter '@ponder/core' build && pnpm --filter './packages/*' --filter '!@ponder/core' --parallel build",
"changeset:release": "pnpm build && changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"install:packages": "pnpm --filter './packages/**' install",
"install:examples": "pnpm --filter './examples/**' install",
"lint": "eslint . --cache",
"lint:fix": "pnpm lint --fix",
"lint:format": "prettier --write",
"preinstall": "npx -y only-allow pnpm",
"test": "pnpm --parallel --no-bail test",
"test:ci": "pnpm --parallel --no-bail test:ci",
"typecheck": "pnpm --parallel typecheck"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.8.2",
"typescript": "^4.9.5"
},
"pnpm": {
"patchedDependencies": {
"graphql@15.8.0": "patches/graphql@15.8.0.patch"
}
}
}