-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
109 lines (109 loc) · 2.88 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
105
106
107
108
109
{
"name": "@totalizer/xform",
"version": "0.0.1-beta.20",
"description": "Form",
"license": "MIT",
"main": "./lib/index",
"module": "./es/index",
"files": [
"es",
"lib"
],
"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": "npm run compile && np --yolo --no-publish",
"start": "npm run dev",
"test": "jest --verbose"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{css,less}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"resolutions": {
"coa": "2.0.2"
},
"dependencies": {
"@totalizer/json-view": "^0.0.1-beta"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/preset-react": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.12.0",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"@umijs/lint": "^4.3.24",
"babel-jest": "^29.7.0",
"dumi": "^2.4.12",
"dumi-theme-antd": "^0.4.2",
"eslint": "^9.11.1",
"eslint-plugin-react": "^7.37.1",
"father": "^4.5.0",
"globals": "^15.10.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"less": "^4.2.0",
"lint-staged": "^15.2.10",
"np": "^10.0.7",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.2",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-less": "^3.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"vanilla-jsoneditor": "^2.2.0"
},
"peerDependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.1.2",
"@mui/lab": "^6.0.0-beta.10",
"@mui/material": "^6.1.2",
"@mui/x-date-pickers": "^7.19.0",
"@uiw/react-json-view": "^2.0.0-alpha.27",
"dayjs": "^1.11.13",
"mobx": "^6.13.3",
"mobx-react": "^9.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"publishConfig": {
"access": "public"
},
"authors": [
"z8264 <[email protected]>"
]
}