-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 4 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "portfolio_2.8",
"version": "0.1.0",
"private": true,
"scripts": {
"__NextJS__": "-----------------------------------------------------------",
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "next lint",
"pristine:cache": "rm -rf ./.next/cache",
"__Storybooks__": "-------------------------------------------------------",
"story": "start-storybook -p 6006",
"story:static": "start-storybook -p 6006 -s ./public",
"storybook": "yarn story",
"build-story": "build-storybook",
"__Cypress__": "----------------------------------------------------------",
"cy": "cypress open",
"cy:run": "cypress run",
"cy:components": "cypress open-ct",
"cy:story": "cypress open-ct",
"cy:story_temp": "cypress open-ct --config-file ./cypress.storybook.json",
"cypress": "yarn cy",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test start http://localhost:3001 cypress",
"e2e:headless": "start-server-and-test start http://localhost:3001 cypress:headless",
"__ESLint__": "-----------------------------------------------------------",
"lint-docs": "eslint -f unix \"src/**/*.{ts,tsx}\"",
"__Submodules__": "-------------------------------------------------------",
"submodule:dependencies": "yarn "
},
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/base": "^5.0.0-alpha.56",
"@mui/icons-material": "^5.0.5",
"@mui/material": "^5.0.6",
"@mui/styles": "^5.0.2",
"@tailwindcss/aspect-ratio": "^0.4.0",
"animate.css": "^4.1.1",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"csstype": "^3.0.11",
"formik": "^2.2.9",
"keen-slider": "^6.6.3",
"next": "12.2.5",
"next-transpile-modules": "^9.0.0",
"prop-types": "^15.7.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.2.0",
"react-toastify": "^8.0.3",
"tailwindcss": "^2.2.17",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@cypress/react": "^6.1.1",
"@cypress/webpack-dev-server": "^2.2.0",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.4.7",
"@storybook/addon-links": "^6.3.12",
"@storybook/addon-measure": "^6.4.7",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-storysource": "^6.4.7",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.3.12",
"@storybook/testing-react": "^1.2.2",
"@types/enzyme": "^3.10.10",
"@types/faker": "^5.5.9",
"@types/jest": "^28.1.6",
"@types/node": "18.7.6",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@types/tailwindcss": "^2.2.4",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"autoprefixer": "^10.3.7",
"babel-loader": "^8.2.3",
"cypress": "^10.3.1",
"enzyme": "^3.11.0",
"eslint": "8.22.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-storybook": "^0.6.2",
"eslint-plugin-tsdoc": "^0.2.14",
"faker": "^5.5.3",
"jest": "^28.1.3",
"postcss": "^8.4.14",
"precss": "^4.0.0",
"prettier": "^2.4.1",
"redux-devtools-extension": "^2.13.9",
"sass": "^1.54.0",
"storybook": "^6.5.9",
"storybook-addon-material-ui": "^0.9.0-alpha.24",
"storybook-addon-next": "^1.6.7",
"storybook-addon-outline": "^1.4.2",
"storybook-formik": "^2.2.0",
"stylelint": "^14.1.0",
"stylelint-config-recommended": "^7.0.0",
"typedoc": "^0.23.9",
"typescript": "4.7.4"
},
"engines": {
"node": ">=16.0.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"resolutions": {
"webpack": "^5"
}
}