-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
134 lines (134 loc) · 4.44 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "react-boilerplate-ts-ui",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"config": "node configGenerator.js --templateFileName=config.template.json --outConfigPath=./public",
"start": "npm run config && vite",
"build": "tsc && vite build",
"test": "vitest watch",
"test:no-watch": "vitest run",
"test:coverage": "vitest run --coverage",
"preview": "vite preview",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src/",
"format": "prettier --write \"**/*.+(js|jsx|ts|tsx|json|css|md)\"",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx ./src/",
"test:all": "cross-env set CI=true && react-scripts test && npm run lint",
"prepare": "husky install",
"pre-commit": "lint-staged",
"coverage": "cross-env CI=true npm test -- --env=jsdom --coverage",
"cypress": "cypress open",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.10.15",
"@mui/lab": "^5.0.0-alpha.109",
"@mui/material": "^5.10.15",
"@mui/types": "^7.2.1",
"@mui/x-date-pickers": "^5.0.9",
"@reduxjs/toolkit": "^1.9.5",
"@tanstack/match-sorter-utils": "^8.8.4",
"@tanstack/react-table": "^8.8.5",
"c8": "^7.12.0",
"date-fns": "^2.29.3",
"formik": "^2.2.9",
"lodash.clonedeep": "^4.5.0",
"notistack": "^2.0.8",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-idle-timer": "^5.7.2",
"react-redux": "^8.1.0",
"react-router": "^6.4.3",
"react-router-dom": "^6.4.3",
"react-syntax-highlighter": "^15.5.0",
"tinycolor2": "^1.4.2",
"use-react-router-breadcrumbs": "^4.0.1",
"yup": "^0.32.11"
},
"devDependencies": {
"vite": "^4.1.5",
"cross-env": "^7.0.3",
"typescript": "^4.9.3",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.0.5",
"husky": "^8.0.2",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^0.16.0",
"eslint-plugin-testing-library": "^5.9.1",
"vitest": "^0.28.4",
"jsdom": "^21.1.0",
"@testing-library/cypress": "^8.0.7",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.9",
"@types/react-syntax-highlighter": "^15.5.5",
"@types/tinycolor2": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"@vitejs/plugin-legacy": "^4.0.1",
"@vitejs/plugin-react": "^3.1.0",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@storybook/addon-essentials": "^7.2.1",
"@storybook/addon-interactions": "^7.2.1",
"@storybook/addon-links": "^7.2.1",
"@storybook/addon-mdx-gfm": "^7.2.1",
"@storybook/blocks": "^7.2.1",
"@storybook/manager-api": "^7.2.1",
"@storybook/react": "^7.2.1",
"@storybook/react-vite": "^7.2.1",
"@storybook/testing-library": "^0.2.0",
"@storybook/theming": "^7.2.1",
"@vitest/coverage-c8": "^0.28.4",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"eslint-plugin-storybook": "^0.6.13",
"lint-staged": "^13.1.0",
"prettier": "^2.8.0",
"prop-types": "^15.8.1",
"storybook": "^7.2.1"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": "eslint --fix",
"*.+(json|css|md|less|scss|html|jsx|js|ts|tsx)": "prettier --write"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.cjs"
}
},
"overrides": {
"semver": "^7.5.2",
"jsdom": {
"tough-cookie": "^4.1.3"
}
}
}