-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "favorite-kit",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"test:unit": "jest",
"generate:component": "hygen new fc",
"generate:page": "hygen new page-fc"
},
"dependencies": {
"next": "13.5.3",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "6.1.3",
"@testing-library/react": "14.0.0",
"@types/jest": "29.5.5",
"@types/node": "20.8.2",
"@types/react": "18.2.24",
"@types/react-dom": "18.2.8",
"@typescript-eslint/eslint-plugin": "6.7.4",
"autoprefixer": "10.4.16",
"eslint": "8.50.0",
"eslint-config-next": "13.5.4",
"eslint-plugin-storybook": "0.6.14",
"eslint-plugin-unused-imports": "3.0.0",
"hygen": "6.2.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"postcss": "8.4.31",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "0.5.5",
"tailwindcss": "3.3.3",
"typescript": "5.2.2"
},
"volta": {
"node": "18.18.0",
"npm": "10.1.0"
}
}