-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
80 lines (80 loc) · 3.9 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
{
"name": "eea.facetednavigation",
"version": "15.0.0",
"author": "European Environment Agency: IDM2 A-Team <eea-edw-a-team-alerts@googlegroups.com>",
"repository": {
"type": "git",
"url": "https://github.com/eea/eea.facetednavigation"
},
"license": "MIT",
"engines": {
"node": ">=8.12.0",
"yarn": "^1.3.2"
},
"dependencies": {
"jquery": "1.12.4",
"jquery-ajax-file-upload": "1.0.0",
"jquery-ui": "1.13.2",
"jquery.cookie": "1.4.1",
"jquery2-bbq": "1.3.1",
"jstree": "3.3.12",
"jstree-bootstrap-theme": "1.0.1",
"select2": "https://github.com/select2/select2/archive/refs/tags/3.5.4.tar.gz"
},
"resolutions": {
"jquery": "1.12.4"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@babel/preset-env": "^7.18.10",
"clean-css-cli": "^5.6.0",
"copy-webpack-plugin": "^10.2.4",
"core-js": "^3.21.1",
"css-loader": "^6.7.1",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"expose-loader": "^3.1.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"sass": "^1.49.11",
"style-loader": "^3.3.1",
"webpack": "^5.72.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"resolutions-comments": {
"ua-parser-js": "See https://github.com/faisalman/ua-parser-js/issues/536"
},
"scripts": {
"build": "npm-run-all build:webpack build:css prettier",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.js",
"build:css": "npm-run-all css-compile-plugins css-minify-plugins css-compile-view css-minify-view css-compile-edit css-minify-edit prettier",
"watch:webpack": "NODE_ENV=development webpack --config webpack.config.js --watch",
"watch:scss": "nodemon --watch eea --ext scss --exec \"yarn build:css\"",
"start": "NODE_ENV=development webpack serve --config webpack.config.js",
"css-compile-plugins": "sass --load-path=node_modules --style expanded --source-map --embed-sources --no-error-css resources/plugins.scss:eea/facetednavigation/browser/static/faceted-jquery.css",
"css-minify-plugins": "cleancss --format breakWith=lf --source-map --source-map-inline-sources --output eea/facetednavigation/browser/static/faceted-jquery.min.css eea/facetednavigation/browser/static/faceted-jquery.css",
"css-compile-view": "sass --load-path=node_modules --style expanded --source-map --embed-sources --no-error-css resources/view.scss:eea/facetednavigation/browser/static/faceted-view.css",
"css-minify-view": "cleancss --format breakWith=lf --source-map --source-map-inline-sources --output eea/facetednavigation/browser/static/faceted-view.min.css eea/facetednavigation/browser/static/faceted-view.css",
"css-compile-edit": "sass --load-path=node_modules --style expanded --source-map --embed-sources --no-error-css resources/edit.scss:eea/facetednavigation/browser/static/faceted-edit.css",
"css-minify-edit": "cleancss --format breakWith=lf --source-map --source-map-inline-sources --output eea/facetednavigation/browser/static/faceted-edit.min.css eea/facetednavigation/browser/static/faceted-edit.css",
"lint": "./node_modules/eslint/bin/eslint.js --max-warnings=0 'eea/**/*.{js,jsx}'",
"lint:fix": "./node_modules/eslint/bin/eslint.js --fix 'eea/**/*.{js,jsx}'",
"prettier": "prettier eea -w"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/eea/eea.facetednavigation"
}