-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 2.87 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
{
"name": "vitesse-for-react",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "vite build",
"dev": "vite --port 8080 --host --open",
"lint": "eslint --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"test": "vitest",
"prepare": "husky install",
"i18n:extract": "lingui extract --clean",
"i18n:compile": "lingui compile"
},
"dependencies": {
"@babel/preset-typescript": "^7.18.6",
"@lingui/react": "^3.14.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"usehooks-ts": "^2.6.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@iconify-json/carbon": "^1.1.6",
"@lingui/cli": "^3.14.0",
"@lingui/core": "^3.14.0",
"@lingui/macro": "^3.14.0",
"@svgr/core": "^6.2.1",
"@types/node": "^18.0.5",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"@unocss/reset": "^0.44.3",
"@vitejs/plugin-react": "2.0.0",
"autoprefixer": "^10.4.7",
"babel-plugin-macros": "^3.1.0",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.3",
"pnpm": "^7.5.2",
"postcss": "^8.4.14",
"postcss-html": "^1.5.0",
"prettier": "^2.7.1",
"react-test-renderer": "^18.2.0",
"stylelint": "^14.9.1",
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^8.0.0",
"stylelint-config-standard": "^26.0.0",
"stylelint-order": "^5.0.0",
"typescript": "^4.7.4",
"unocss": "^0.44.3",
"unplugin-auto-import": "^0.9.3",
"unplugin-lingui-loader": "^0.1.0",
"vite": "^3.0.0",
"vite-plugin-html": "^3.2.0",
"vite-plugin-pages": "^0.25.0",
"vitest": "^0.18.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"package.json": [
"prettier --write"
],
"*.vue": [
"eslint --fix",
"prettier --write",
"stylelint --fix"
],
"*.{scss,less,styl,html}": [
"stylelint --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"engines": {
"node": ">=14"
}
}