-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.86 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.86 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
{
"name": "@nicepkg/smart-web",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"title": "Smart Web",
"title:zh-CN": "Smart Web",
"title:zh-TW": "Smart Web",
"description": "Make web page smarter.",
"description:zh-CN": "让网页更智能。",
"description:zh-TW": "讓網頁更智能。",
"author": "nicepkg",
"license": "MIT",
"engines": {
"node": ">=18.20.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"scripts": {
"dev": "vite",
"build": "npm run test &&vite build",
"build:analyze": "vite build -- --analyze",
"commit": "git add . && cz",
"knip": "knip",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"test": "tsc --noEmit"
},
"dependencies": {
"@icon-park/react": "^1.4.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"eventemitter3": "^5.0.1",
"i18next": "^23.11.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-draggable": "^4.4.6",
"react-i18next": "^14.1.2",
"sentinel-js": "^0.0.7",
"urlcat": "^3.1.0",
"vite-plugin-monkey": "^4.0.4",
"zustand": "^4.5.4"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cz-commitlint": "^19.2.0",
"@emotion/babel-plugin": "^11.11.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@unocss/eslint-config": "^0.61.0",
"@unocss/transformer-compile-class": "^0.61.0",
"@unocss/transformer-directives": "^0.61.0",
"@unocss/transformer-variant-group": "^0.61.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-react-swc": "^3.7.0",
"commitizen": "^4.3.0",
"dotenv": "^16.4.5",
"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-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^9.0.11",
"knip": "^5.23.2",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"rollup-plugin-visualizer": "^5.12.0",
"typescript": "^5.5.2",
"unocss": "^0.61.0",
"vite": "^5.3.2",
"vite-plugin-importer": "^0.2.5",
"vite-tsconfig-paths": "^4.3.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "pnpm exec eslint"
},
"config": {
"commitizen": {
"path": "./cz-adapter.cjs"
}
}
}