-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.6 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
{
"name": "ddd-example",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest --run",
"test:watch": "vitest watch",
"test:watch:coverage": "vitest watch --coverage",
"test:coverage": "vitest run --coverage",
"eslint": "eslint --max-warnings=0 src"
},
"dependencies": {
"@fontsource/roboto": "^4.5.8",
"@hookform/resolvers": "^3.1.1",
"@reactivex/rxjs": "^6.6.7",
"eslint-plugin-unicorn": "^46.0.0",
"fake-indexeddb": "^4.0.1",
"fraction.js": "^4.2.0",
"idb": "^7.1.1",
"observable-hooks": "^4.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.0",
"rxjs": "^7.8.0",
"tailwind-merge": "^1.14.0",
"usehooks-ts": "^2.9.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/testing-library__jest-dom": "^5.14.5",
"@vitejs/plugin-react-swc": "^3.0.0",
"@vitest/coverage-c8": "^0.29.7",
"autoprefixer": "^10.4.14",
"eslint": "^8.36.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-testing-library": "^5.10.2",
"happy-dom": "^8.9.0",
"jsdom": "^21.1.1",
"nanoid": "^4.0.2",
"postcss": "^8.4.21",
"prettier": "^2.8.6",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.29.7"
}
}