-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.26 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.26 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
{
"name": "cuttingedge",
"version": "4.22.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"knip": "knip",
"all": "pnpm i && pnpm build && pnpm lint && pnpm test",
"build": "pnpm install && pnpm turbo run build",
"clean": "rm -rf ./packages/*/{tsconfig.*tsbuildinfo,dist}",
"lint": "turbo run lint",
"prepare": "husky install",
"test": "CI=true turbo run test -- --coverage --run",
"watch": "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"
},
"dependencies": {
"@cutting/assert": "workspace:*",
"@capsizecss/core": "4.1.3",
"@capsizecss/metrics": "4.2.0",
"@capsizecss/vanilla-extract": "2.0.4",
"@vanilla-extract/css": "1.21.2",
"@vanilla-extract/dynamic": "2.1.5",
"@vanilla-extract/sprinkles": "1.7.1",
"@visx/axis": "4.0.0",
"@visx/curve": "4.0.0",
"@visx/group": "4.0.0",
"@visx/scale": "4.0.0",
"@visx/shape": "4.0.0",
"@visx/text": "4.0.0",
"d3-array": "3.2.4",
"d3-scale": "4.0.2",
"d3-selection": "3.0.0",
"d3-shape": "3.2.0",
"dayjs": "1.11.23",
"history": "5.3.0",
"immer": "11.1.18",
"react": "19.3.0",
"react-calendly": "4.4.0",
"react-device-detect": "2.2.3",
"react-dom": "19.3.0",
"react-helmet": "6.1.0",
"react-hook-form": "7.87.0",
"react-is": "19.3.0",
"react-router": "8.3.1",
"use-debounce": "10.1.1"
},
"devDependencies": {
"@changesets/cli": "3.0.2",
"@cutting/devtools": "workspace:*",
"@cutting/eslint-config": "workspace:*",
"@cutting/tsconfig": "workspace:*",
"@cutting/useful-types": "workspace:*",
"@eslint/compat": "^2.1.1",
"@eslint/eslintrc": "^3.3.7",
"@eslint/js": "^10.0.1",
"@mdx-js/loader": "^3.1.1",
"@rollup/plugin-terser": "1.0.0",
"@types/node": "22.20.2",
"@types/react": "19.3.0",
"@types/react-dom": "19.3.0",
"@typescript-eslint/eslint-plugin": "8.70.0",
"@typescript-eslint/parser": "8.70.0",
"@vanilla-extract/vite-plugin": "5.2.6",
"@vitejs/plugin-react": "^6.1.1",
"@vitest/coverage-v8": "5.0.0",
"cheerio": "^1.2.0",
"core-js": "3.50.0",
"eslint": "^10.10.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-simple-import-sort": "^14.0.0",
"follow-redirects": "1.16.0",
"husky": "9.1.7",
"jsdom": "30.0.1",
"lint-staged": "17.5.0",
"node-fetch": "3.3.2",
"prettier": "3.9.6",
"turbo": "2.10.12",
"typescript": "6.0.3",
"vite": "8.2.2",
"vitest": "5.0.0",
"whatwg-fetch": "3.6.20"
},
"packageManager": "pnpm@11.26.0",
"volta": {
"node": "22.22.1",
"npm": "11.12.0",
"pnpm": "11.26.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint -c ./packages/eslint-config/react.mjs --fix --warn-ignored=false"
],
"*.{json,md}": [
"prettier --write"
]
}
}