-
Notifications
You must be signed in to change notification settings - Fork 592
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "filer",
"private": true,
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "gulp build",
"watch": "gulp watch",
"webpack": "webpack",
"webpack:watch": "webpack --watch",
"lint": "gulp lint",
"lint:fix": "gulp eslint:fix",
"test": "gulp tests:unit"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"babel-loader": "^10.0.0",
"eslint": "^9.15.0",
"fancy-log": "^2.0.0",
"gulp": "^5.0.0",
"gulp-autoprefixer": "^9.0.0",
"gulp-eslint-new": "^2.3.0",
"gulp-iconfont": "^11.0.1",
"gulp-iconfont-css": "^3.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"jasmine-core": "^5.12.1",
"jquery": "^3.7.1",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.1.0",
"karma-jasmine": "^5.1.0",
"karma-json-fixtures-preprocessor": "^0.0.6",
"plugin-error": "^2.0.1",
"sass": "^1.94.2",
"webpack": "^5.103.0",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"dropzone": "^5.9.3",
"mediator-js": "^0.11.0"
}
}