-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
83 lines (83 loc) · 2.74 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
{
"name": "realworld-example-app",
"private": true,
"version": "0.0.0-dev",
"scripts": {
"dev": "vite",
"dev:2": "run-p dev tscheck:w",
"build": "tsc && vite build",
"serve": "vite preview",
"tscheck": "tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch --preserveWatchOutput",
"test": "npm run eslint && npm run tscheck && npm run test:cov",
"test:r": "vitest run src",
"test:w": "vitest watch src",
"test:cov": "vitest run src --coverage",
"eslint": "node node_modules/eslint/bin/eslint \"src/**/*.{ts,tsx}\"",
"eslint:w": "watchexec -w src \"npm run eslint\"",
"eslint:fix": "npm run eslint -- --fix"
},
"dependencies": {
"@hookform/resolvers": "^2.9.10",
"ahooks": "^3.7.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"clsx": "^1.2.1",
"jwt-decode": "^3.1.2",
"ky": "^0.31.4",
"njct": "^10.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.38.0",
"react-router-dom": "^6.4.2",
"recoil": "^0.7.6",
"rsts": "^1.0.0"
},
"devDependencies": {
"@kyleshevlin/eslint-plugin": "^1.3.0",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"@vitest/coverage-c8": "^0.24.3",
"autoprefixer": "^10.4.13",
"cssnano": "^5.1.14",
"cssnano-preset-default": "^5.2.13",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-boundaries": "^3.0.0",
"eslint-plugin-etc": "^2.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-regexp": "^1.9.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-sonarjs": "^0.16.0",
"eslint-plugin-sort-class-members": "^1.15.2",
"eslint-plugin-testing-library": "^5.9.1",
"eslint-plugin-unicorn": "^44.0.2",
"eslint-plugin-wix-editor": "^3.3.0",
"happy-dom": "^7.6.6",
"identity-obj-proxy": "^3.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.2.1",
"simplytyped": "^3.3.0",
"tailwindcss": "^3.2.1",
"typescript": "^4.8.4",
"vite": "^3.2.1",
"vite-tsconfig-paths": "^3.5.2",
"vitest": "^0.24.3",
"vitest-mock-extended": "^1.0.3",
"watchexec-bin": "^1.0.0"
}
}