-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
140 lines (140 loc) Β· 4.36 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "vize",
"version": "1.0.0",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap --npm-client=tnpm",
"beforeDev": "node ./scripts/createPackageSoftLink.js",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
},
"lint-staged": {
"packages/*/src/**/*.{js,jsx,ts,tsx,json,d.ts}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "enforce-branch-name '(doc|bugfix|feature)/.+' --ignore 'staging'",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@ant-design/icons": "^4.0.5",
"@formily/antd": "^2.0.0-beta.56",
"@formily/core": "^2.0.0-beta.56",
"@formily/react": "^2.0.0-beta.56",
"@sentry/react": "^6.5.0",
"@sentry/tracing": "^6.5.0",
"@udecode/slate-plugins": "^1.0.0-alpha.25",
"@vitejs/plugin-react-refresh": "^1.3.6",
"@vize/richtext-editor": "^0.1.5",
"@vize/runtime-web": "^0.1.2",
"@vize/types": "^0.1.15",
"antd": "^4.11.2",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"dayjs": "^1.10.3",
"enquire-js": "^0.2.1",
"fs-extra": "^9.1.0",
"hotkeys-js": "^3.8.2",
"i18next": "^19.9.1",
"i18next-browser-languagedetector": "^6.0.1",
"i18next-chained-backend": "^2.0.1",
"i18next-localstorage-backend": "^3.1.2",
"json-schema": "^0.2.5",
"json-schema-defaults": "^0.4.0",
"lodash.template": "^4.5.0",
"mobx": "^5.15.4",
"mobx-react": "^6.1.8",
"mobx-time-traveler": "0.1.4",
"promise-timeout": "^1.3.0",
"qrcode.react": "^1.0.1",
"query-string": "^6.11.1",
"ramda": "^0.27.0",
"rc-queue-anim": "^1.8.5",
"rc-scroll-anim": "^2.7.6",
"react": "^17.0.2",
"react-color": "^2.18.1",
"react-contexify": "^4.1.1",
"react-dom": "^16.13.1",
"react-i18next": "^11.8.8",
"react-icons": "^3.9.0",
"react-json-view": "^1.21.3",
"react-rnd": "^10.1.10",
"react-scripts": "3.4.1",
"react-sortable-hoc": "^1.11.0",
"react-use": "^13.27.1",
"reflect-metadata": "^0.1.13",
"slate": "^0.63.0",
"slate-history": "^0.62.0",
"slate-hyperscript": "^0.62.0",
"slate-react": "^0.63.0",
"styled-components": "^5.1.1",
"throttle-debounce": "^2.1.0",
"tinycolor2": "^1.4.1",
"vite": "^2.9.9",
"vite-tsconfig-paths": "^3.5.0",
"wouter": "^2.5.3"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@sentry/webpack-plugin": "^1.15.1",
"@types/classnames": "^2.2.10",
"@types/fs-extra": "^8.1.1",
"@types/lodash.template": "^4.5.0",
"@types/node": "^13.9.8",
"@types/promise-timeout": "^1.3.0",
"@types/qrcode.react": "^1.0.1",
"@types/ramda": "^0.27.3",
"@types/react": "^16.9.29",
"@types/react-color": "^3.0.4",
"@types/react-dom": "^16.9.5",
"@types/throttle-debounce": "^2.1.0",
"@types/tinycolor2": "^1.4.2",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"@vuepress/plugin-active-header-links": "^1.8.0",
"@vuepress/plugin-back-to-top": "^1.8.0",
"@vuepress/plugin-nprogress": "^1.8.0",
"@vuepress/plugin-pwa": "^1.8.0",
"@vuepress/plugin-search": "^1.8.0",
"css-loader": "3.4.2",
"css-to-string-loader": "^0.1.3",
"customize-cra": "^0.9.1",
"enforce-branch-name": "^1.0.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^4.2.5",
"lerna": "^3.16.4",
"less": "4.1.0",
"less-loader": "5.0.0",
"lint-staged": "^10.2.11",
"markdown-it-html5-embed": "^1.0.0",
"node-watch": "^0.7.1",
"prettier": "^1.19.1",
"raw-loader": "^4.0.1",
"react-app-rewired": "^2.1.6",
"rimraf": "^3.0.2",
"sass": "^1.32.12",
"sass-loader": "^8.0.2",
"typedoc": "^0.20.35",
"typescript": "4.3.5",
"vuepress": "^1.8.0",
"vuepress-plugin-code-copy": "^1.0.6",
"vuepress-plugin-code-switcher": "^1.1.0",
"vuepress-plugin-nprogress": "^1.1.8",
"webpack": "4.42.0",
"webpack-bundle-analyzer": "^4.4.2"
}
}