-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
117 lines (117 loc) · 4.25 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
{
"name": "vite-react-typescript",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite --port=3000",
"dev": "vite",
"build": "tsc && vite build",
"lint:scripts": "eslint --report-unused-disable-directives --max-warnings 0 .",
"lint:scripts:fix": "npm run lint:scripts -- --fix",
"lint:scripts:report": "npm run lint:scripts -- --format html --output-file ./reports/eslint.html",
"lint:styles": "stylelint ./**/*.{css,scss}",
"lint:styles:fix": "npm run lint:styles -- --fix",
"format": "prettier --ignore-unknown --find-config-path --check .",
"format:fix": "prettier --ignore-unknown --find-config-path --write .",
"lint:ts": "tsc --noEmit",
"lint": "sh shells/lint",
"lint:fix": "sh shells/lint-fix",
"lint:report": "sh shells/lint-report",
"lint:staged": "lint-staged",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:run:e2e": "cypress run --e2e",
"cy:run:component": "cypress run --component",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"preview": "vite preview",
"validate": "sh ./shells/validate",
"validate:fix": "sh ./shells/validate-fix",
"validate:staged": "sh ./shells/validate-staged",
"prepare": "npx rimraf .husky && husky install && sh ./shells/husky",
"clean": "rimraf node_modules package-lock.json .husky dist reports coverage cypress/screenshots cypress/videos",
"uninstall:husky": "npm uninstall husky --no-save && git config --unset core.hooksPath && npx rimraf .husky",
"uninstall:tailwindcss": "node ./scripts/uninstall-tailwind.cjs",
"uninstall:cypress": "node ./scripts/uninstall-cypress.cjs",
"commit": "cz"
},
"dependencies": {
"@emotion/react": "^11.10.8",
"@emotion/styled": "^11.10.8",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.12.3",
"@reduxjs/toolkit": "^1.9.5",
"@tanstack/router": "^0.0.1-beta.86",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.1",
"redux-saga": "^1.2.3"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/cypress": "^9.0.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.16.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react-swc": "^3.0.0",
"@vitest/coverage-v8": "^0.33.0",
"@vitest/ui": "^0.33.0",
"autoprefixer": "^10.4.14",
"concurrently": "^8.0.1",
"cypress": "^12.17.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-define-config": "^1.20.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-tailwindcss": "^3.11.0",
"glob": "^10.3.3",
"husky": "^8.0.0",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.2",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"redux-saga-test-plan": "^4.0.6",
"rimraf": "^5.0.0",
"sass": "^1.62.1",
"stylelint": "^15.6.1",
"stylelint-config-recommended": "^12.0.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-config-standard-scss": "^9.0.0",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.2",
"vite": "^4.3.2",
"vite-plugin-svgr": "^3.2.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.33.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}