-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 4.24 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
{
"name": "react-app",
"version": "1.0.0",
"description": "react-app",
"homepage": "https://github.com/donniean/react-app#readme",
"bugs": {
"url": "https://github.com/donniean/react-app/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/donniean/react-app.git"
},
"license": "MIT",
"author": "Donnie An",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"commit": "cz",
"dev": "vite",
"docker:build": "docker build --tag=donniean/react-app .",
"docker:push": "docker push donniean/react-app",
"docker:run": "docker run --publish=3000:80 -it --rm donniean/react-app",
"preinstall": "npx only-allow npm",
"lint-all": "concurrently --group --timings --prefix-colors=auto \"npm:lint:*(!:fix)\"",
"lint-all:fix": "concurrently --max-processes=1 --group --timings --prefix-colors=auto \"npm:lint:*:fix\"",
"lint:autocorrect": "autocorrect --lint",
"lint:autocorrect:fix": "autocorrect --fix",
"lint:cspell": "cspell lint --no-progress --relative --no-must-find-files --dot --gitignore \"**\"",
"lint:eslint": "eslint \"**/*.{js,mjs,cjs,ts,tsx}\"",
"lint:eslint:fix": "npm run lint:eslint -- --fix",
"lint:htmlhint": "htmlhint --ignore=\"**/coverage/**\" \"**/*.html\"",
"lint:markdownlint": "markdownlint --dot \"**/*.md\"",
"lint:markdownlint:fix": "npm run lint:markdownlint -- --fix",
"lint:prettier": "prettier --check --ignore-unknown \"**\"",
"lint:prettier:fix": "prettier --write --ignore-unknown \"**\"",
"lint:sort-package-json": "npm run lint:sort-package-json:fix -- --check",
"lint:sort-package-json:fix": "sort-package-json",
"lint:stylelint": "stylelint \"**/*.css\"",
"lint:stylelint:fix": "npm run lint:stylelint -- --fix",
"lint:tsc": "tsc --noEmit",
"pre-commit": "lint-staged --concurrent false",
"prepare": "husky",
"preview": "vite preview",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch"
},
"dependencies": {
"@tanstack/react-query": "^5.64.0",
"@tanstack/react-query-devtools": "^5.64.0",
"axios": "^1.7.9",
"clsx": "^2.1.1",
"lodash": "^4.17.21",
"qs": "^6.13.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.1.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@donniean/configs": "^6.23.7",
"@types/eslint": "^9.6.0",
"@types/lodash": "^4.17.14",
"@types/qs": "^6.9.17",
"@types/react": "^19.0.6",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"@vitest/coverage-v8": "^2.1.8",
"autocorrect-node": "^2.13.0",
"autoprefixer": "^10.4.20",
"commitizen": "^4.3.1",
"concurrently": "^9.1.2",
"cspell": "^8.17.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^0.25.1",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-vitest": "^0.4.1",
"htmlhint": "^1.1.4",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"markdownlint-cli": "^0.43.0",
"postcss": "^8.4.49",
"postcss-import": "^16.1.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"sort-package-json": "^2.12.0",
"stylelint": "^16.13.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-config-standard": "^37.0.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^6.0.7",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
}
}