-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 3.47 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
{
"name": "etools-epd",
"description": "Etools ePD",
"version": "1.0.0",
"contributors": [
"eTools Team"
],
"type": "module",
"license": "BSD-3-Clause",
"repository": "https://github.com/unicef/etools-epd",
"scripts": {
"tsToJs": "rm -rf ./src && tsc --skipLibCheck",
"tsToJsOrTrue": "rm -rf ./src && tsc --skipLibCheck || true",
"tsEslint": "node_modules/eslint/bin/eslint.js 'src_ts/**/*.ts' --fix",
"start": "rm -rf src && npm install && rollup -c rollup-dev.config.js -w --configPlugin @rollup/plugin-commonjs",
"start:tsc": "tsc || true && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds --hmr\"",
"build": "export NODE_OPTIONS=--max_old_space_size=4096 && rollup -c rollup-prod.config.js --configPlugin @rollup/plugin-commonjs",
"test": "npm run test:unit && npm run test:integration",
"test:integration": "tsc && mocha test/integration --timeout=10000",
"test:regenerate_screenshots": "tsc && mocha test/integration/screenshots-baseline/regenerate.js --timeout=15000",
"lint:eslint": "eslint src_ts/**",
"format:eslint": "eslint src_ts/** --fix",
"lint": "npm run lint:eslint",
"format": "npm run format:eslint",
"generate:icons": "npm --prefix node_modules/@unicef-polymer/etools-unicef run generate-icons -- --output=$(pwd)/assets/icons/ --icons=$(pwd)/assets/icons/icons.js",
"rd:init": "relative-deps init",
"rd:add": "relative-deps add",
"rd:reload": "relative-deps",
"rd:watch": "chokidar \"../../etools-polymer/**/*.js\" \"../../etools-polymer/**/**/*.js\" -c 'npm run rd:reload' --silent",
"prepare": "relative-deps"
},
"dependencies": {
"@mapbox/leaflet-omnivore": "^0.3.4",
"@shoelace-style/shoelace": "2.18.0",
"@types/leaflet": "^1.9.3",
"@types/lodash-es": "^4.17.7",
"@unicef-polymer/etools-modules-common": "^5.1.5",
"@unicef-polymer/etools-piwik-analytics": "^4.1.3",
"@unicef-polymer/etools-types": "^1.11.21",
"@unicef-polymer/etools-unicef": "^1.2.4",
"@unicef-polymer/etools-utils": "^2.0.3",
"dayjs": "^1.11.10",
"esri-leaflet": "^3.0.8",
"express": "^4.18.2",
"leaflet": "^1.9.3",
"leaflet.markercluster": "^1.5.3",
"lit": "^3.2.1",
"lodash-es": "^4.17.21",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"reselect": "^4.1.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.1.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-lit": "^1.15.0",
"eslint-plugin-lit-a11y": "^4.1.4",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.10.0",
"globals": "^15.13.0",
"prettier": "~3.4.2",
"relative-deps": "^1.0.7",
"rollup": "^4.28.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-license": "^3.5.3",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^3.0.0",
"rollup-plugin-workbox": "^8.1.1",
"svg-sprite": "^2.0.2",
"typescript": "^4.9.5"
},
"relativeDependencies": {},
"optionalDependencies": {
"@rollup/rollup-linux-x64-musl": "^4.28.1"
}
}