-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.65 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
{
"name": "@codemirror-toolkit/monorepo",
"packageManager": "[email protected]",
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"private": true,
"workspaces": [
"packages/*",
"examples/react/*"
],
"scripts": {
"postinstall": "husky",
"lint": "eslint . --cache --fix",
"lint:ci": "eslint . --cache --cache-location ./node_modules/.cache/eslint/.eslintcache --max-warnings 0",
"format": "prettier --write --cache .",
"format:check": "prettier --check --cache .",
"clean": "run foreach -- run clean",
"build": "run foreach -- run build",
"test": "run foreach -- run test",
"foreach": "yarn workspaces foreach -Apv --exclude '@codemirror-toolkit/(monorepo|example-*)'"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/user-event": "^14.5.2",
"@types/eslint": "^8.44.9",
"@types/node": "^22.5.5",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@typescript/lib-dom": "npm:@types/web@*",
"@vitest/coverage-v8": "^2.1.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-testing-library": "^6.2.0",
"husky": "^9.1.6",
"jsdom": "^25.0.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.2",
"vite": "^5.4.5",
"vitest": "^2.1.1"
}
}