-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 3.1 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "yapp-web-1",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix .",
"format": "prettier --write .",
"postinstall": "husky install",
"test:watch": "vitest --watch",
"test": "vitest",
"server:dev": "json-server --watch db.json --port 5000",
"check-types": "tsc --noEmit --pretty --project tsconfig.json",
"make-sprite": "rm public/sprite.svg && svgstore -o public/sprite.svg public/spriteIcons/**/*.svg"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"bash -c 'yarn check-types'"
]
},
"packageManager": "[email protected]",
"dependencies": {
"@hookform/resolvers": "^3.1.0",
"@suspensive/react": "^1.11.1",
"@suspensive/react-query": "^1.11.1",
"@tanstack/react-query": "^4.29.7",
"@vanilla-extract/css": "^1.11.0",
"@vanilla-extract/css-utils": "^0.1.3",
"@vanilla-extract/next-plugin": "^2.1.2",
"@vanilla-extract/recipes": "^0.4.0",
"classnames": "^2.3.2",
"clsx": "^1.2.1",
"crypto-js": "^4.1.1",
"date-fns": "^2.30.0",
"dayjs": "^1.11.8",
"framer-motion": "^10.12.16",
"ky": "^0.33.3",
"lodash": "^4.17.21",
"lottie-web": "^5.12.2",
"nanoid": "^4.0.2",
"next": "13.4.12",
"postcss": "^8.4.23",
"prop-types": "^15.8.1",
"query-string": "^8.1.0",
"react": "18.2.0",
"react-day-picker": "^8.7.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"typescript": "^5.1.3",
"vitest-canvas-mock": "^0.3.2",
"zod": "^3.21.4",
"zustand": "^4.3.8"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@tanstack/eslint-plugin-query": "^4.29.9",
"@tanstack/react-query-devtools": "^4.29.14",
"@testing-library/dom": "^9.3.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/crypto-js": "^4.1.1",
"@types/lodash": "^4.14.195",
"@types/node": "^20.1.5",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.4",
"@types/testing-library__jest-dom": "^5.14.6",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@vanilla-extract/vite-plugin": "^3.8.2",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.40.0",
"eslint-config-next": "^13.4.2",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-testing-library": "^5.11.0",
"husky": "^8.0.0",
"jsdom": "^22.0.0",
"json-server": "^0.17.3",
"lint-staged": "^13.2.2",
"msw": "^1.2.1",
"prettier": "^2.8.8",
"svgstore": "^3.0.1",
"svgstore-cli": "^2.0.1",
"vite": "^4.3.9",
"vitest": "^0.31.1"
}
}