-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
62 lines (62 loc) · 1.49 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
{
"name": "mds",
"packageManager": "[email protected]",
"private": true,
"description": "Mines Digital Services Packages",
"engines": {
"node": "=20.11.0"
},
"workspaces": {
"packages": [
"services/core-web",
"services/minespace-web",
"services/common"
]
},
"devDependencies": {
"@types/react-redux": "^7.1.34",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.8.3",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-react": "7.37.1",
"husky": "9.1.6",
"lint-prepush": "3.0.2",
"lint-staged": "15.2.10",
"prettier": "3.3.3"
},
"resolutions": {
"@types/react": "16.9.49",
"@types/react-dom": "16.9.8",
"@types/react-router-dom": "5.3.3",
"cheerio": "1.0.0-rc.3"
},
"scripts": {
"postinstall": "husky install"
},
"lint-staged": {
"*.{js,css,json,md,ts,tsx}": [
"prettier --write --ignore-unknown --config .prettierrc.json"
],
"*.{js,ts,tsx}": [
"eslint --fix --max-warnings=30"
]
},
"lint-prepush": {
"base": "develop",
"tasks": {
"*.js": []
}
},
"dependencies": {
"dompurify": "^3.1.7",
"html-react-parser": "^5.1.18",
"react-quill": "^2.0.0"
}
}