-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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
{
"name": "next-app",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"build-storybook": "env NODE_OPTIONS=--openssl-legacy-provider build-storybook build",
"dev": "next dev",
"eslint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"export": "next export",
"start": "next start",
"storybook": "env NODE_OPTIONS=--openssl-legacy-provider start-storybook dev -p 6006"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.1",
"next": "13.0.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.0.5",
"redux": "^4.2.0",
"redux-saga": "^1.2.2",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/react": "^6.5.14",
"@types/node": "^18.11.15",
"@types/react-redux": "^7.1.24",
"@types/styled-components": "^5.1.19",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.8",
"storybook": "^6.5.14",
"typescript": "^4.9.4"
}
}