-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
119 lines (119 loc) · 3.6 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"prepare": "husky install",
"test": "jest --coverage --silent",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@headlessui/react": "^1.2.0",
"@inertiajs/inertia": "^0.9.0",
"@inertiajs/inertia-react": "^0.6.0",
"@inertiajs/progress": "^0.2.7",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@tailwindcss/forms": "^0.3.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/ziggy-js": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"autoprefixer": "^10.2.4",
"axios": "^0.21",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"cypress": "^8.7.0",
"cypress-file-upload": "^5.0.8",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-storybook": "^0.5.7",
"husky": "^7.0.0",
"i18next": "^21.6.11",
"jest": "^27.2.5",
"jsdom": "^18.0.0",
"jsdom-global": "^3.0.2",
"laravel-mix": "^6.0.6",
"lint-staged": "^11.1.2",
"lodash": "^4.17.19",
"postcss": "^8.2.13",
"postcss-import": "^14.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.15.4",
"tailwindcss": "^2.1.2",
"ts-loader": "^9.2.5",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.4.2",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"@date-io/date-fns": "1.x",
"@date-io/moment": "1.x",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.4",
"@mui/lab": "^5.0.0-alpha.57",
"@mui/material": "^5.0.4",
"@types/lodash": "^4.14.178",
"@types/styled-components": "^5.1.15",
"babel-jest": "^27.2.5",
"date-fns": "^2.26.0",
"dayjs": "^1.10.7",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-prettier": "^4.0.0",
"jest-transform-stub": "^2.0.0",
"moment": "^2.29.1",
"notistack": "^2.0.3",
"prettier": "^2.3.2",
"query-string": "^7.1.1",
"react-error-boundary": "^3.1.3",
"react-inlinesvg": "^2.3.0",
"styled-components": "^5.3.1",
"ts-jest": "^27.0.5",
"webpack": "^5.70.0",
"ziggy-js": "^1.4.2"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint"
],
"*.{ts,tsx}": [
"prettier --write",
"eslint"
],
"**/*.php": [
"./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php"
]
}
}