-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 2.4 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
{
"name": "emoji-yanglegeyang",
"private": true,
"version": "0.0.1",
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx --cache --fix --quiet ./",
"stylelint": "stylelint --fix --cache src/**/*.{scss,css}",
"lint": "pnpm eslint && pnpm stylelint",
"prepare": "husky install",
"test": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.5",
"ahooks": "^3.7.1",
"i18next": "^21.9.1",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.6",
"react-modal": "^3.15.1",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@antfu/eslint-config-ts": "^0.26.1",
"@commitlint/cli": "^17.1.1",
"@commitlint/config-conventional": "^17.1.0",
"@iconify-json/carbon": "^1.1.7",
"@iconify-json/fad": "^1.1.2",
"@iconify-json/ic": "^1.1.9",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.7.16",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-modal": "^3.13.1",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@unocss/preset-attributify": "^0.45.23",
"@unocss/reset": "^0.45.23",
"@vitejs/plugin-legacy": "^2.1.0",
"@vitejs/plugin-react": "^2.1.0",
"@vitest/coverage-c8": "^0.23.2",
"commitlint": "^17.1.1",
"eslint": "^8.23.0",
"eslint-define-config": "^1.7.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.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",
"rollup-plugin-visualizer": "^5.8.1",
"sass": "^1.54.5",
"stylelint": "^14.11.0",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^28.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"terser": "^5.15.0",
"ts-node": "^10.9.1",
"typescript": "^4.6.4",
"unocss": "^0.45.23",
"unplugin-auto-import": "^0.11.2",
"vite": "3.0.9",
"vite-plugin-pages": "^0.26.0",
"vite-plugin-pwa": "^0.12.3",
"vitest": "^0.23.2"
}
}