-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.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": "frontend",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build --no-lint",
"start": "next start",
"lint": "eslint --cache --cache-location .eslintcache \"**/*.{js,ts,jsx,tsx}\"",
"format": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md,yml,html}\"",
"format:fix": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,yml,html}\"",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook -s public",
"postinstall": "husky install"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{html,css,less,ejs,json}": [
"prettier --write"
],
"*.{md,yaml,yml}": [
"prettier --write"
]
},
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@types/react-modal": "^3.13.1",
"@types/react-slick": "^0.23.8",
"antd": "^4.20.6",
"axios": "^0.26.1",
"babel-plugin-module-resolver": "^4.1.0",
"formik": "^2.2.9",
"framer-motion": "^6.3.4",
"hamburger-react": "^2.5.0",
"jwt-decode": "^3.1.2",
"moment": "^2.29.3",
"nanoid": "^3.3.4",
"next": "12.1.0",
"path": "^0.12.7",
"polished": "^4.1.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-modal": "^3.15.1",
"react-query": "^3.34.19",
"react-slick": "^0.28.1",
"react-spinners-kit": "^1.9.1",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@emotion/babel-plugin": "^11.7.2",
"@mdx-js/react": "^1.6.22",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-docs": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@svgr/webpack": "^6.2.1",
"@types/node": "17.0.23",
"@types/react": "17.0.42",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"babel-loader": "^8.2.4",
"chromatic": "^6.5.3",
"eslint": "8.11.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-storybook": "^0.5.7",
"husky": ">=7",
"lint-staged": ">=10",
"prettier": "^2.6.0",
"storybook-addon-next-router": "^3.1.1",
"typescript": "4.6.2",
"webpack": "5.68.0"
},
"packageManager": "[email protected]"
}