-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.01 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": "react-logic-component",
"version": "1.0.3",
"type": "module",
"keywords": [
"logic",
"logic-component",
"react",
"component",
"head-less"
],
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js"
}
},
"scripts": {
"dev": "cd packages/docs &&pnpm run dev",
"build:docs": "cd packages/docs &&pnpm run build",
"preview:docs": "cd packages/docs &&pnpm run build&& pnpm run preview",
"build": "cd packages/component &&pnpm run build",
"prepare": "husky",
"eslint": "npx eslint -c eslint.config.mjs ."
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@eslint/js": "^9.3.0",
"@types/eslint": "^9.6.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^4.2.1",
"commitlint": "^17.7.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-simple-import-sort": "^12.1.0",
"globals": "^15.3.0",
"husky": "^9.0.11",
"lint-staged": "^13.3.0",
"prettier": "^3.0.3",
"rollup-plugin-external-globals": "^0.11.0",
"rollup-plugin-visualizer": "^5.12.0",
"stylelint": "^15.10.3",
"stylelint-config-standard-scss": "^11.0.0",
"typescript-eslint": "^7.9.0",
"vite": "^5.2.10",
"vite-plugin-cdn-import": "^1.0.1",
"vite-plugin-chunk-split": "^0.5.0",
"vite-plugin-dts": "^3.9.0",
"vite-plugin-html": "^3.2.2",
"vite-plugin-imagemin": "^0.6.1"
},
"lint-staged": {
"**/*.{ts,tsx,js}": [
"npm run eslint",
"prettier --write"
],
"**/*.scss": [
"stylelint --fix"
]
},
"license": "MIT",
"repository": "https://github.com/xhh0223/logic-component.git",
"dependencies": {
"classnames": "^2.3.2",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.6.1"
}
}