-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.75 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.75 KB
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
{
"name": "ab_platform_web",
"version": "1.23.1",
"description": "AppBuilder runtime environment for the Web client.",
"main": "index.js",
"scripts": {
"postinstall": "patch-package",
"lint": "eslint AppBuilder/. init/. resources/. ui/. webix_custom_components/. --fix --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"test": "mocha -r esm --require @babel/register --config test/.mocharc.js test/**/*.test.js",
"build": "webpack-cli --config webpack.prod.js --progress",
"build:update": "webpack-cli --config webpack.prod.js",
"build:dev": "webpack-cli --config webpack.dev.js",
"watch": "webpack-cli --config webpack.dev.js --watch --progress",
"break": "node --inspect-brk=9229 ./node_modules/.bin/webpack-cli --watch --progress"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/register": "^7.18.6",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^10.0.0",
"copy-webpack-plugin": "^12.0.2",
"critters-webpack-plugin": "^3.0.2",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-mocha": "^10.4.3",
"eslint-plugin-prettier": "^4.2.1",
"esm": "^3.2.25",
"html-webpack-plugin": "^5.5.0",
"jsdom": "^20.0.0",
"mini-css-extract-plugin": "^2.7.6",
"mocha": "^10.4.0",
"patch-package": "^8.0.0",
"prettier": "^2.2.1",
"sinon": "^14.0.0",
"source-map-loader": "^4.0.1",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@sentry/browser": "^7.69.0",
"@sentry/webpack-plugin": "^2.7.1",
"ab-utils": "npm:@digiserve/ab-utils@^1.3.1",
"atomicjs": "^4.4.1",
"bootstrap": "^4.6.2",
"chai": "^4.3.7",
"formiojs": "^4.18.0",
"image-size": "^1.1.1",
"jszip-utils": "^0.1.0",
"papaparse": "^5.5.2",
"pdfjs-dist": "^4.2.67",
"sails.io.js": "^1.2.1",
"semver": "^7.7.4",
"socket.io-client": "^2.5.0",
"tinymce": "^8.3.2",
"uuid": "^8.3.2"
},
"sideEffects": [
"*.css",
"./js/webix/extras/tinymce.js",
"./js/webix/locales/*",
"./js/webix/componenets/**/*.js",
"./js/webix/extras/*.js",
"./init/sentry.js"
],
"overrides": {
"critters-webpack-plugin": {
"html-webpack-plugin": "$html-webpack-plugin"
},
"bfj": "9.1.3",
"minimatch": "10.2.3",
"serialize-javascript": "^7.0.3",
"nanoid": "3.3.8",
"quill": "2.0.2"
}
}