-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.7 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.7 KB
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
{
"name": "arc-react-saas-ui",
"private": true,
"version": "0.0.0",
"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 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 CI=true npm run test:no-watch && npm run lint",
"prepare": "husky install",
"pre-commit": "lint-staged",
"coverage": "cross-env CI=true vitest run --coverage",
"cypress": "cypress open",
"analyze": "vite 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",
"crypto-js": "^4.2.0",
"date-fns": "^2.29.3",
"dotenv": "^16.4.7",
"formik": "^2.2.9",
"lodash.clonedeep": "^4.5.0",
"notistack": "3.0.2",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.3.5",
"react-helmet-async": "^2.0.5",
"react-idle-timer": "^5.7.2",
"react-redux": "^8.1.0",
"react-router": "^6.4.3",
"react-router-dom": "^6.4.3",
"recharts": "^2.15.1",
"tinycolor2": "^1.4.2",
"typescript-eslint": "^8.41.0",
"underscore": "^1.13.7",
"underscore.deepclone": "^0.1.3",
"use-react-router-breadcrumbs": "^4.0.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@testing-library/cypress": "^8.0.7",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/crypto-js": "^4.2.2",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.9",
"@types/tinycolor2": "^1.4.3",
"@types/underscore": "^1.13.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"@vitejs/plugin-legacy": "^4.0.1",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.28.4",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^4.2.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-sonarjs": "^2.0.4",
"husky": "^8.0.2",
"jsdom": "^21.1.0",
"lint-staged": "^13.1.0",
"msw": "^2.7.0",
"prettier": "^2.8.0",
"prop-types": "^15.8.1",
"rollup-plugin-visualizer": "^6.0.3",
"typescript": "^4.9.3",
"vite": "^4.1.5",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.0.5",
"vitest": "^0.28.4"
},
"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"
}
}
}