-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.91 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 3.91 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"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": {
"@capsizecss/core": "4.1.3",
"@capsizecss/metrics": "3.6.2",
"@capsizecss/vanilla-extract": "2.0.4",
"@vanilla-extract/css": "1.18.0",
"@vanilla-extract/dynamic": "2.1.5",
"@vanilla-extract/sprinkles": "1.6.5",
"@visx/axis": "3.12.0",
"@visx/curve": "3.12.0",
"@visx/group": "3.12.0",
"@visx/scale": "3.12.0",
"@visx/shape": "3.12.0",
"@visx/text": "3.12.0",
"d3-array": "3.2.4",
"d3-scale": "4.0.2",
"d3-selection": "3.0.0",
"d3-shape": "3.2.0",
"dayjs": "1.11.19",
"history": "5.3.0",
"immer": "11.1.0",
"react": "19.2.3",
"react-calendly": "4.4.0",
"react-device-detect": "2.2.3",
"react-dom": "19.2.3",
"react-helmet": "6.1.0",
"react-hook-form": "7.69.0",
"react-is": "19.2.3",
"react-router": "7.11.0",
"use-debounce": "10.0.6"
},
"devDependencies": {
"@changesets/cli": "2.29.8",
"@cutting/assert": "workspace:*",
"@cutting/devtools": "workspace:*",
"@cutting/eslint-config": "workspace:*",
"@cutting/tsconfig": "workspace:*",
"@cutting/useful-types": "workspace:*",
"@eslint/compat": "^2.0.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@mdx-js/loader": "^3.1.1",
"@rollup/plugin-terser": "0.4.4",
"@types/node": "25.0.3",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.50.1",
"@typescript-eslint/parser": "8.50.1",
"@vanilla-extract/vite-plugin": "5.1.4",
"@vitejs/plugin-react-swc": "^4.2.2",
"@vitest/coverage-v8": "4.0.16",
"cheerio": "^1.1.2",
"core-js": "3.47.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"follow-redirects": "1.15.11",
"husky": "9.1.7",
"jsdom": "27.3.0",
"lint-staged": "16.2.7",
"node-fetch": "3.3.2",
"prettier": "3.7.4",
"turbo": "2.7.2",
"typescript": "5.9.3",
"vite": "7.3.0",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "4.0.16",
"whatwg-fetch": "3.6.20"
},
"packageManager": "pnpm@10.26.2",
"volta": {
"node": "22.19.0",
"npm": "11.5.2",
"pnpm": "10.26.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.2.7",
"@types/react-dom": "19.2.3",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"updateConfig": {
"ignoreDependencies": [
"eslint",
"*eslint*"
]
},
"onlyBuiltDependencies": [
"@swc/core",
"core-js",
"esbuild",
"fsevents",
"husky",
"leveldown",
"puppeteer"
]
}
}