-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 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
{
"name": "fam",
"version": "3.0.0",
"description": "Financial Assurance Module, formerly known as Auditor Portal",
"repository": {
"type": "git",
"url": "https://github.com/unicef/etools-auditor-portal.git"
},
"license": "BSD-3-Clause",
"type": "module",
"scripts": {
"build": "export NODE_OPTIONS=--max_old_space_size=4096 && rollup -c rollup-prod.config.js --configPlugin @rollup/plugin-commonjs",
"tsToJs": "tsc --skipLibCheck || true",
"start": "rm -rf src && npm install && rollup -c rollup-dev.config.js -w --configPlugin @rollup/plugin-commonjs",
"test": "npm run test:unit && npm run test:integration",
"test:integration": "tsc && mocha test/integration --timeout=10000",
"test:unit": "tsc && polymer test --module-resolution=node --npm",
"test:sauce": "tsc && polymer test --module-resolution=node --npm -s 'windows 10/microsoftedge@17' -s 'macos 10.13/safari@11'",
"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:watch": "chokidar \"../../etools-polymer/**/*.js\" \"../../etools-polymer/**/**/*.js\" -c 'npm run rd:reload' --silent",
"prepare": "relative-deps"
},
"dependencies": {
"@shoelace-style/shoelace": "2.18.0",
"@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.20",
"@unicef-polymer/etools-unicef": "^1.1.8",
"@unicef-polymer/etools-utils": "^2.0.3",
"chokidar-cli": "^3.0.0",
"dayjs": "^1.11.10",
"dexie": "^3.2.4",
"lit": "^3.2.1",
"lodash-es": "^4.17.21",
"redux": "^4.2.0",
"redux-thunk": "^2.4.1",
"relative-deps": "^1.0.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",
"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",
"globals": "^15.13.0",
"prettier": "~3.4.2",
"rollup": "^4.28.0",
"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"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-musl": "^4.28.1"
},
"relativeDependencies": {}
}