-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.95 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.95 KB
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
{
"name": "cuttingedge",
"version": "4.22.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"knip": "knip",
"all": "pnpm i && pnpm build && pnpm lint && pnpm test",
"build": "turbo run build",
"build:tsc": "tsc -b ./tsconfig.packages.json",
"clean": "rm -rf ./packages/*/{tsconfig.*tsbuildinfo,dist}",
"lint": "turbo run lint",
"lint:js": "eslint --ext .js . -c ./packages/devtools/.eslintrc.json --ignore-path ./.eslintignore --fix",
"prepare": "husky install",
"test": "CI=true turbo run test -- --coverage --run",
"watch": "pnpm build:tsc && pnpm tsc -b ./tsconfig.packages.json --watch",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"prerelease": "pnpm clean && pnpm install --no-frozen-lockfile && pnpm run build",
"release": "pnpm run prerelease && changeset publish && git push --follow-tags && git status && pnpm -r publish"
},
"dependencies": {
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@changesets/cli": "2.28.1",
"@cutting/assert": "workspace:*",
"@cutting/devtools": "workspace:*",
"@cutting/eslint-config": "workspace:*",
"@cutting/tsconfig": "workspace:*",
"@cutting/useful-types": "workspace:*",
"@eslint/compat": "^1.2.7",
"@eslint/js": "^9.21.0",
"@eslint/eslintrc": "^3.3.0",
"@mdx-js/loader": "^3.1.0",
"@types/node": "22.13.9",
"@rollup/plugin-terser": "0.4.4",
"@typescript-eslint/eslint-plugin": "8.26.0",
"@typescript-eslint/parser": "8.26.0",
"@vitest/coverage-v8": "3.0.7",
"@vitejs/plugin-react-swc": "^3.8.0",
"@vanilla-extract/vite-plugin": "5.0.1",
"cheerio": "^1.0.0",
"core-js": "3.41.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "10.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"follow-redirects": "1.15.9",
"husky": "9.1.7",
"jsdom": "26.0.0",
"lint-staged": "15.4.3",
"node-fetch": "3.3.2",
"prettier": "3.5.3",
"turbo": "2.4.4",
"typescript": "5.8.2",
"vite": "6.2.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "3.0.7",
"whatwg-fetch": "3.6.20"
},
"packageManager": "pnpm@10.5.2",
"volta": {
"node": "21.7.3",
"npm": "10.8.2",
"pnpm": "10.5.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint -c ./packages/eslint-config/react.mjs --fix --warn-ignored=false"
],
"*.{json,md}": [
"prettier --write"
]
},
"pnpm": {
"overrides": {
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@typescript-eslint/parser": "8.26.0",
"gsap": "npm:@gsap/shockingly@^3.12.7"
},
"updateConfig": {
"ignoreDependencies": [
"eslint",
"*eslint*"
]
}
}
}