-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.79 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
{
"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"
},
"devDependencies": {
"@changesets/cli": "2.27.7",
"@cutting/assert": "workspace:*",
"@cutting/devtools": "workspace:*",
"@cutting/eslint-config": "workspace:*",
"@cutting/tsconfig": "workspace:*",
"@cutting/useful-types": "workspace:*",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.9.1",
"@eslint/eslintrc": "^3.1.0",
"@types/node": "22.5.1",
"@rollup/plugin-terser": "0.4.4",
"@typescript-eslint/eslint-plugin": "8.3.0",
"@typescript-eslint/parser": "8.3.0",
"@vitest/coverage-v8": "2.0.5",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vanilla-extract/vite-plugin": "4.0.15",
"cheerio": "^1.0.0",
"core-js": "3.38.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"follow-redirects": "1.15.6",
"husky": "9.1.5",
"jsdom": "25.0.0",
"lint-staged": "15.2.9",
"node-fetch": "3.3.2",
"prettier": "3.3.3",
"turbo": "2.1.0",
"typescript": "5.5.4",
"vite": "5.4.2",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "2.0.5",
"whatwg-fetch": "3.6.20"
},
"packageManager": "[email protected]",
"volta": {
"node": "21.7.3",
"npm": "10.8.2",
"pnpm": "9.9.0"
},
"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": {
"eslint": "^9.9.1",
"@typescript-eslint/parser": "8.3.0",
"gsap": "npm:@gsap/shockingly@^3.12.5"
},
"updateConfig": {
"ignoreDependencies": [
"eslint",
"*eslint*"
]
}
}
}