forked from totalizer-team/XForm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.85 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
{
"name": "@totalizer/xform",
"version": "0.0.1-beta.11",
"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": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.0.1",
"@mui/lab": "^6.0.0-beta.8",
"@mui/material": "^6.0.1",
"@mui/x-date-pickers": "^7.15.0",
"@uiw/react-json-view": "^2.0.0-alpha.26",
"dayjs": "^1.11.13",
"mobx": "^6.13.1",
"mobx-react": "^9.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"@umijs/lint": "^4.0.0",
"babel-jest": "^29.7.0",
"dumi": "^2.3.0",
"dumi-theme-antd": "^0.4.2",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"father": "^4.1.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"less": "^4.2.0",
"lint-staged": "^13.0.3",
"np": "^10.0.7",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.0.0",
"prettier-plugin-packagejson": "^2.2.18",
"stylelint": "^14.9.1",
"ts-node": "^10.9.2",
"typescript": "^5.0.3"
},
"publishConfig": {
"access": "public"
},
"authors": [
"z8264 <[email protected]>"
]
}