-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.58 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
{
"name": "next-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"lint:cache": "next lint --cache",
"type:check": "tsc -p tsconfig.json --jsx react-jsx --noEmit",
"test": "jest --watch",
"test:ci": "jest --ci",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"commit": "cz",
"prepare": "husky install"
},
"dependencies": {
"@next/font": "13.3.0",
"@tanstack/react-query": "^4.29.3",
"@types/node": "18.15.11",
"@types/react": "18.0.37",
"@types/react-dom": "18.0.11",
"axios": "^1.3.5",
"lodash-es": "^4.17.21",
"next": "^13.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "5.0.4",
"util": "^0.12.5"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@serverless-guru/prettier-plugin-import-order": "^0.4.2",
"@storybook/addon-actions": "^7.0.5",
"@storybook/addon-essentials": "^7.0.5",
"@storybook/addon-interactions": "^7.0.5",
"@storybook/addon-links": "^7.0.5",
"@storybook/addon-mdx-gfm": "^7.0.5",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/cli": "^7.0.5",
"@storybook/nextjs": "^7.0.5",
"@storybook/react": "^7.0.5",
"@storybook/testing-library": "^0.1.0",
"@svgr/webpack": "^7.0.0",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/lodash-es": "^4.17.7",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"autoprefixer": "^10.4.14",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.38.0",
"eslint-config-next": "^13.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.11",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-transform-stub": "^2.0.0",
"postcss": "^8.4.22",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7",
"storybook": "^7.0.5",
"tailwindcss": "^3.3.1",
"ts-jest": "^29.1.0"
},
"resolutions": {
"webpack": "^5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}