-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.26 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.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
{
"name": "@form-observer/monorepo",
"type": "module",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "prettier --ignore-path .gitignore --check . && eslint --ignore-path .gitignore . && vue-tsc --noEmit && svelte-check --no-tsconfig",
"format": "prettier --ignore-path .gitignore --write ."
},
"devDependencies": {
"@faker-js/faker": "^10.2.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.19.3",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"@vitest/coverage-istanbul": "^4.0.16",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-testing-library": "^7.15.4",
"eslint-plugin-vitest": "^0.3.26",
"jsdom": "^27.4.0",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.4.1",
"svelte-check": "^4.3.5",
"typescript": "^5.9.3",
"vite": "7.3.1",
"vitest": "^4.0.16",
"vue-tsc": "^3.2.2"
},
"overrides": {
"@form-observer/solid": {
"vite-plugin-solid": {
"vite": "7.3.1"
}
}
}
}