-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.03 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
{
"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 . && tsc --noEmit",
"format": "prettier --ignore-path .gitignore --write ."
},
"devDependencies": {
"@faker-js/faker": "^9.3.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitest/coverage-istanbul": "^2.1.8",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-testing-library": "^7.1.1",
"eslint-plugin-vitest": "^0.3.26",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}