-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.77 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": "bb-work",
"version": "0.1.2",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --check \"**/*.{js,jsx,ts,tsx}\"",
"prettier:fix": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"tauri-dev": "tauri dev",
"test": "jest",
"e2e": "cd test/wdio && yarn install && yarn test",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@hookform/resolvers": "^3.3.1",
"@mui/icons-material": "^5.14.7",
"@mui/material": "^5.14.7",
"@reduxjs/toolkit": "^1.9.5",
"@tauri-apps/api": "^1.4.0",
"@types/node": "20.5.9",
"@types/react": "18.2.25",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.15",
"eslint": "^8.0.1",
"eslint-config-next": "^13.5.4",
"next": "13.4.19",
"next-intl": "^2.20.0",
"notistack": "^3.0.1",
"postcss": "8.4.31",
"prettier-plugin-tailwindcss": "^0.5.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.46.1",
"react-redux": "^8.1.2",
"redux-persist": "^6.0.0",
"tailwindcss": "3.3.3",
"ts-node": "^10.9.1",
"typescript": "5.2.2",
"yup": "^1.2.0"
},
"devDependencies": {
"@storybook/addon-essentials": "7.4.6",
"@storybook/addon-interactions": "7.4.5",
"@storybook/addon-links": "7.4.5",
"@storybook/addon-onboarding": "1.0.8",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "7.4.5",
"@storybook/nextjs": "^7.4.5",
"@storybook/react": "7.4.5",
"@storybook/testing-library": "0.2.1",
"@tauri-apps/cli": "^1.4.0",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard-with-typescript": "^39.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-storybook": "^0.6.14",
"eslint-plugin-tailwindcss": "^3.13.0",
"husky": "^8.0.3",
"i18next-resources-for-ts": "^1.3.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.0.3",
"storybook": "7.4.5"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}