-
Notifications
You must be signed in to change notification settings - Fork 182
/
package.json
95 lines (95 loc) · 3.15 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
{
"scripts": {
"preversion": "",
"version": "sed -i \"s/version .*/version = \\\"v${npm_package_version}\\\"/g\" ./inc/version.ini",
"postversion": "git add ./inc/version.ini && git commit --amend --no-edit && git tag -d v${npm_package_version} && git tag v${npm_package_version}",
"format": "prettier --write .",
"lint": "eslint --ignore-path .gitignore .",
"test": "jest --watchAll",
"coverage": "jest --silent --coverage",
"watch": "sed -i \"s/version .*/version = \\\"v${npm_package_version}\\\"/g\" ./nodejs/config.ini && webpack --mode development --watch",
"build:dev": "sed -i \"s/version .*/version = \\\"v${npm_package_version}\\\"/g\" ./nodejs/config.ini && webpack --mode development",
"build:production": "webpack --mode production",
"prepare": "husky"
},
"workspaces": [
"plugins/*"
],
"private": true,
"dependencies": {
"@radix-ui/react-context-menu": "^2.1.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"classnames": "^2.2.6",
"diff-match-patch": "^1.0.5",
"draft-js": "^0.11.4",
"flux": "^4.0.1",
"immutability-helper": "^3.1.1",
"immutable": "^4.0.0-rc.12",
"jquery": "^3.7.1",
"js-base64": "^3.6.1",
"js-cookie": "^3.0.0",
"keymirror": "^0.1.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"object-assign": "^4.1.1",
"platform": "1.3.6",
"prop-types": "^15.6.0",
"react": "^18.0.0",
"react-datepicker": "^7.0.0",
"react-dom": "^18.0.0",
"react-hook-form": "^7.45.4",
"react-hotkeys-hook": "^4.5.0",
"react-mentions": "^4.4.10",
"react-tagsinput": "^3.19.0",
"react-transition-group": "^4.2.2",
"react-virtual": "^2.10.4",
"sprintf-js": "^1.1.2",
"file-saver": "^2.0.5"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/eslint-parser": "7.25.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@sentry/webpack-plugin": "2.22.4",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"babel-loader": "9.2.1",
"css-loader": "7.1.2",
"eslint": "^8.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^28.0.0",
"eslint-plugin-jest-dom": "^5.0.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-testing-library": "^6.0.0",
"fs-extra": "^11.1.1",
"glob": "^11.0.0",
"html-webpack-plugin": "5.6.0",
"husky": ">=6",
"ini": "^5.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-css": "^6.0.1",
"lint-staged": ">=10",
"mini-css-extract-plugin": "^2.7.6",
"msw": "^2.1.3",
"prettier": "^3.0.0",
"sass": "^1.66.0",
"sass-loader": "16.0.2",
"style-loader": "4.0.0",
"undici": "^5.28.2",
"webpack": "5.95.0",
"webpack-cli": "5.1.4",
"webpack-concat-files-plugin": "^0.5.2",
"whatwg-fetch": "^3.6.20"
},
"resolutions": {
"wrap-ansi": "^7.0.0"
},
"version": "2.22.49"
}