-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 4.03 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "zemble",
"version": "0.0.1",
"description": "Zemble Monorepo",
"main": "index.ts",
"scripts": {
"test-recursive": "bunx turbo run test --continue -- --timeout 20000",
"lint": "bunx turbo run lint --concurrency=100% --continue -- --quiet",
"typecheck": "bunx turbo run typecheck --concurrency=100% --continue",
"codegen": "bunx turbo run codegen",
"build": "bunx turbo run build",
"prepare": "husky",
"postinstall": "cp manual-patches/sofa-api/package.json node_modules/sofa-api/",
"prepush": "bunx turbo run lint test typecheck --continue",
"generate-cms-json-schema": "typescript-json-schema ./packages/cms/tsconfig.json CmsConfigFile --include ./packages/cms/types.ts --out ./packages/cms/entities-json-schema.json --required --strictNullChecks --rejectDateType",
"fix-workspace-dependencies": "find . -type f -name 'package.json' -not -path './package.json' -not -path '*/node_modules/*' -exec perl -pi -e 's/\"workspace:.*\"/\"*\"/g' {} \\;",
"changeset-release": "bun run fix-workspace-dependencies && bunx changeset publish",
"create-changeset": "bunx changeset",
"reinstall": "rm -rf node_modules/ && find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && bun install --force",
"reinstall-with-nuked-lockfile": "rm -rf node_modules/ && rm bun.lockb && find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && bun install",
"git-nuke": "git clean -Xdf",
"clean": "find . -type f \\( -name \"*.mjs\" -o -name \"*.d.mts\" -o -name \"*.d.ts\" \\) -not -path \"./node_modules/*\" -delete",
"upgrade-interactive": "bunx npm-check-updates -ws --root --format group -i -x @expo/*,expo,expo-*,react-native,*react-native,*react-native*,react-native*,*-native*,@react-navigation/*",
"upgrade-interactive-native": "bunx npm-check-updates -ws --root --format group -i --filter @expo/*,expo,expo-*,react-native,*react-native,*react-native*,react-native*,*-native*,@react-navigation/*",
"fix-dependencies": "bunx check-dependency-version-consistency --fix"
},
"trustedDependencies": [
"supabase",
"mongodb-memory-server"
],
"keywords": [
"zemble",
"@zemble"
],
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/kingstinct/zemble"
},
"funding": [
"https://github.com/sponsors/kingstinct",
"https://github.com/sponsors/robertherber"
],
"author": {
"name": "Robert Herber",
"email": "[email protected]",
"url": "https://github.com/robertherber"
},
"bugs": {
"url": "https://github.com/kingstinct/zemble/issues"
},
"license": "ISC",
"private": true,
"devDependencies": {
"@graphql-eslint/eslint-plugin": "^4.3.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@stylistic/eslint-plugin-ts": "^2.12.1",
"@tsconfig/bun": "^1.0.7",
"@types/bun": "*",
"@types/debug": "^4.1.12",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"bun-types": "1.1.42",
"check-dependency-version-consistency": "^5.0.0",
"eslint": "8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-kingstinct": "workspace:*",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-comment-length": "^2.1.1",
"eslint-plugin-functional": "^6.6.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsonc": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-react-native-a11y": "^3.3.0",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-yml": "^1.16.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"pino-pretty": "^13.0.0",
"pkg-pr-new": "^0.0.39",
"turbo": "^2.3.3",
"typescript-json-schema": "^0.65.1"
},
"workspaces": [
"packages/*",
"apps/*"
],
"dependencies": {
"@changesets/cli": "^2.27.11",
"debug": "^4.4.0",
"graphql": "^16.10.0",
"madge": "^8.0.0"
}
}