forked from refinedev/refine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.62 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
{
"name": "refinedev",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": "refine",
"scripts": {
"attw": "lerna run attw --scope @refinedev/core",
"attw:all": "lerna run attw --scope @refinedev/*",
"biome": "biome",
"build": "lerna run build --scope @refinedev/core",
"build:all": "lerna run build --scope @refinedev/* --scope create-refine-app",
"changeset": "changeset",
"coffee": "pnpm nuke && pnpm i && pnpm build:all",
"cypress:open": "cypress open -C cypress/cypress.config.ts",
"cypress:run": "cypress run -C cypress/cypress.config.ts",
"dev": "lerna run dev",
"dev:docs": "concurrently \"cd documentation && pnpm dev\" \"pnpm dev --scope @refinedev/live-previews\" --names docs,live --prefix-colors blue,red",
"lerna": "lerna",
"lint": "biome check .",
"lint:ci": "biome ci .",
"lint:error": "biome check . --diagnostic-level error",
"lint:fix": "biome check . --apply",
"lint:staged": "lint-staged",
"nuke": "echo 'Removing all node_modules, builds and lockfiles'; pnpm nuke:nx; pnpm nuke:node_modules; pnpm nuke:builds; pnpm nuke:lockfiles;",
"nuke:builds": "lerna exec -- rimraf dist && lerna exec -- rimraf .next && lerna exec -- rimraf build",
"nuke:lockfiles": "lerna exec --ignore @refinedev/codemod -- rimraf package-lock.json && lerna exec --ignore @refinedev/codemod -- rimraf yarn.lock && lerna exec --ignore @refinedev/codemod -- rimraf pnpm-lock.yaml",
"nuke:node_modules": "lerna clean --yes",
"nuke:nx": "rimraf .nx/cache",
"nx": "nx",
"pnpm:devPreinstall": "node scripts/fix-pnpm-symlinks.js",
"prepare": "husky install",
"publint": "lerna run publint --scope @refinedev/core",
"publint:all": "lerna run publint --scope @refinedev/*",
"sp": "syncpack",
"start": "lerna run start",
"test": "lerna run test --stream",
"test:all": "lerna run test --stream --scope @refinedev/* --scope create-refine-app",
"test:all:coverage": "pnpm test:all -- -- --coverage",
"test:coverage": "pnpm test -- -- --coverage",
"version-packages": "pnpm changeset version && pnpm i --ignore-scripts --lockfile-only --no-frozen-lockfile && git add pnpm-lock.yaml"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"biome format --write --no-errors-on-unmatched"
],
"*.{md,mdx}": [
"prettier --config ./.prettierrc --write"
],
"package.json": [
"sort-package-json",
"syncpack lint"
]
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
"@biomejs/biome": "^1.7.3",
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.24.3",
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@lerna/filter-options": "^6.2.0",
"@netlify/plugin-nextjs": "5.2.2",
"@types/jest": "^29.2.4",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"concurrently": "^7.4.0",
"cypress": "^13.6.3",
"glob": "^10.4.2",
"husky": "^8.0.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lerna": "^8.1.2",
"lint-staged": "^10.5.4",
"nx": "18.2.2",
"pidtree": "^0.6.0",
"port-pid": "^0.0.7",
"prettier": "^2.7.1",
"publint": "^0.2.7",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-refresh": "^0.11.0",
"rimraf": "3.0.2",
"sort-package-json": "^2.7.0",
"syncpack": "^12.3.2",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2",
"wait-on": "^7.0.1"
},
"packageManager": "[email protected]+sha256.b6fd0bfda555e7e584ad7e56b30c68b01d5a04f9ee93989f4b93ca8473c49c74",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"nx": {}
}