-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
98 lines (98 loc) · 3.14 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
{
"name": "lionqueen",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node server/index.js",
"build": "next build",
"start": "next start",
"lint": "next lint ./src",
"lint:style": "stylelint \"./src/**/*.{ts,tsx}\"",
"lint-staged": "lint-staged",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook -s public",
"chromatic": "chromatic --project-token=0aefef65099b",
"prepare": "husky install",
"deploy": "serverless"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.2",
"@tanstack/react-query": "^4.0.10",
"@types/axios": "^0.14.0",
"@types/react-copy-to-clipboard": "^5.0.3",
"axios": "^0.27.2",
"formik": "^2.2.9",
"next": "12.1.5",
"next-redux-wrapper": "^7.0.5",
"react": "^18.1.0",
"react-cookie": "^4.1.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.1.0",
"react-redux": "^8.0.2",
"seamless-scroll-polyfill": "^2.2.0",
"serverless": "2.72.2",
"serverless-nextjs-plugin": "^2.5.2-alpha.0",
"storybook-addon-styled-component-theme": "^2.0.0",
"styled-components": "^5.3.5",
"typescript": "4.3.5",
"yup": "^0.32.11"
},
"resolutions": {
"webpack": "5"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@commitlint/types": "^16.2.1",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/builder-webpack5": "^6.4.22",
"@storybook/manager-webpack5": "^6.4.22",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "^0.0.11",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@svgr/webpack": "^6.2.1",
"@types/node": "17.0.25",
"@types/react": "18.0.5",
"@types/react-dom": "18.0.1",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"babel-loader": "^8.2.4",
"babel-plugin-styled-components": "^2.0.7",
"chromatic": "^6.5.4",
"dotenv": "^16.0.1",
"eslint": "8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.1.5",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.5.11",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"postcss": "^8.4.14",
"postcss-syntax": "^0.36.2",
"prettier": "^2.6.2",
"storybook-addon-next": "^1.6.2",
"stylelint": "^14.9.1",
"stylelint-config-concentric-order": "^5.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^8.0.0",
"stylelint-config-standard": "^26.0.0",
"stylelint-config-styled-components": "^0.1.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache --fix",
"stylelint \"./src/**/*.{ts,tsx}\""
]
}
}