-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.76 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
{
"name": "react-next-starter",
"license": "MIT",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"plop": "plop",
"test": "run-p test:*",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"test:unit:coverage": "jest --coverage",
"test:unit:update": "jest --updateSnapshot",
"test:e2e": "cypress run",
"test:e2e:ui": "cypress open",
"lint": "run-p lint:*",
"lint:types": "eslint '*/**/*.{js,ts,tsx}'",
"lint:format": "yarn prettier --check --ignore-unknown .",
"storybook": "storybook dev -c src/storybook/config -p 6006",
"build-storybook": "storybook build -c src/storybook/config",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.0",
"@emotion/server": "11.11.0",
"@emotion/styled": "11.11.0",
"@fontsource/roboto": "4.5.8",
"@mui/icons-material": "5.11.16",
"@mui/material": "5.12.3",
"@reduxjs/toolkit": "1.9.5",
"clsx": "1.2.1",
"next": "13.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "8.0.5",
"redux-devtools": "3.7.0"
},
"devDependencies": {
"@storybook/addon-actions": "7.0.9",
"@storybook/addon-essentials": "7.0.9",
"@storybook/addon-links": "7.0.9",
"@storybook/addon-mdx-gfm": "7.0.9",
"@storybook/nextjs": "7.0.9",
"@storybook/react": "7.0.9",
"@testing-library/dom": "9.2.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.5.1",
"@types/node": "18.16.5",
"@types/react": "18.2.2",
"@types/react-dom": "18.2.3",
"@types/react-redux": "7.1.25",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@typescript-eslint/parser": "5.59.2",
"babel-jest": "29.5.0",
"babel-plugin-module-resolver": "5.0.0",
"cypress": "12.11.0",
"eslint": "8.40.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "13.4.1",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "^0.6.11",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"lint-staged": "13.2.2",
"npm-run-all": "4.1.5",
"plop": "3.1.2",
"prettier": "2.8.8",
"storybook": "7.0.9",
"tsconfig-paths-webpack-plugin": "4.0.1",
"typescript": "5.0.4"
}
}