-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.51 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
{
"name": "@totalizer/xcomponents",
"version": "0.0.1-beta.2",
"description": "Advanced React Components",
"license": "MIT",
"main": "./lib/index",
"module": "./es/index",
"files": [
"lib",
"es"
],
"scripts": {
"build": "father build",
"build:watch": "father dev",
"compile": "father build ",
"dev": "dumi dev",
"docs:build": "dumi build",
"docs:preview": "dumi preview",
"doctor": "father doctor",
"lint": "npm run lint:es && npm run lint:css",
"lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
"lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install && dumi setup",
"prepublishOnly": "father doctor && npm run build",
"start": "npm run dev"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@react-three/fiber": "^8.17.12",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.8.1",
"motion": "^12.0.11",
"three": "^0.172.0",
"typed.js": "^2.1.0",
"yet-another-react-lightbox": "^3.21.7"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@totalizer/xmenu": "^0.0.3",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@umijs/lint": "^4.4.2",
"animated-scroll-to": "^2.3.0",
"dumi": "^2.4.17",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.3",
"father": "^4.5.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.6",
"stylelint": "^16.12.0"
},
"peerDependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.3.0",
"@mui/lab": "^6.0.0-beta.21",
"@mui/material": "^6.3.0",
"@mui/x-date-pickers": "^7.23.3",
"framer-motion": "^11.15.0",
"mobx": "^6.13.5",
"mobx-react": "^9.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"publishConfig": {
"access": "public"
},
"authors": [
"z8264 <[email protected]>"
]
}