-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
106 lines (106 loc) · 3.09 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": "react-formule",
"private": false,
"version": "1.3.0",
"author": "CERN",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cern-sis/react-formule.git"
},
"type": "module",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-formule.js",
"require": "./dist/react-formule.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test:unit": "vitest",
"coverage": "vitest run --coverage",
"build:watch": "vite build --watch --config vite.config.local.ts",
"prepare": "husky"
},
"dependencies": {
"@ant-design/pro-layout": "^7.16.4",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/language": "^6.8.0",
"@codemirror/legacy-modes": "^6.3.3",
"@codemirror/lint": "^6.5.0",
"@codemirror/merge": "^6.1.1",
"@reduxjs/toolkit": "^1.9.5",
"@rjsf/antd": "^5.21.0",
"@rjsf/core": "^5.21.0",
"@rjsf/utils": "^5.21.0",
"@rjsf/validator-ajv8": "^5.21.0",
"antd": "^5.7.3",
"axios": "^1.4.0",
"codemirror": "^6.0.1",
"codemirror-json-schema": "0.7.1",
"immutability-helper": "^3.1.1",
"katex": "^0.16.8",
"markdown-it": "^13.0.1",
"markdown-it-texmath": "^1.0.0",
"marked": "^9.0.3",
"object-path": "^0.11.8",
"rdndmb-html5-to-touch": "^8.0.3",
"react-dnd": "^16.0.1",
"react-dnd-multi-backend": "^8.0.3",
"react-input-mask": "3.0.0-alpha.2",
"react-markdown-editor-lite": "^1.3.4",
"react-redux": "^8.1.2",
"sanitize-html": "^2.11.0",
"squirrelly": "^9.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testing-library/react": "^14.0.0",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"happy-dom": "^12.2.1",
"husky": ">=6",
"less": "^4.1.3",
"lint-staged": ">=10",
"lodash-es": "^4.17.21",
"prettier": "3.1.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-visualizer": "^5.11.0",
"typescript": "^5.0.2",
"vite": "^5.0.2",
"vite-plugin-css-injected-by-js": "^3.3.0",
"vite-plugin-dts": "^3.6.3",
"vitest": "^0.34.6"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint --cache --fix",
"*.{ts,tsx,js,jsx,css,less,md,html}": "prettier --write"
}
}