-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.65 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
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "dashboard",
"version": "3.0.0",
"author": "The eTools Team",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "[email protected]:unicef/etools-dashboard"
},
"description": "Dashboard for UNICEF eTools",
"scripts": {
"build": "export NODE_OPTIONS=--max_old_space_size=8192 && npm run tsToJs && npm run build:static",
"tsToJs": "tsc --skipLibCheck",
"tsEslint": "eslint src_ts/**",
"start": "tsc --watch --preserveWatchOutput & polymer serve -H 0.0.0.0 -p 8080",
"build:prpl-server": "polymer build --auto-base-path && gulp prpl-server",
"build:static": "polymer build",
"serve:prpl-server": "prpl-server --root server/build",
"serve:static": "polymer serve --port 5000 build/es5-bundled",
"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"
},
"dependencies": {
"@polymer/app-layout": "^3.1.0",
"@polymer/app-route": "^3.0.2",
"@polymer/decorators": "^3.0.0",
"@polymer/iron-flex-layout": "^3.0.1",
"@polymer/iron-icons": "^3.0.1",
"@polymer/iron-iconset-svg": "^3.0.1",
"@polymer/iron-pages": "^3.0.1",
"@polymer/paper-button": "^3.0.1",
"@polymer/paper-dropdown-menu": "^3.2.0",
"@polymer/paper-icon-button": "^3.0.2",
"@polymer/paper-item": "^3.0.1",
"@polymer/paper-listbox": "^3.0.1",
"@polymer/paper-menu-button": "^3.1.0",
"@polymer/paper-styles": "^3.0.1",
"@polymer/paper-tabs": "^3.1.0",
"@polymer/paper-toast": "^3.0.1",
"@polymer/paper-toggle-button": "^3.0.1",
"@polymer/paper-tooltip": "^3.0.1",
"@polymer/polymer": "^3.5.1",
"@types/lodash-es": "^4.17.5",
"@unicef-polymer/etools-ajax": "^4.4.2",
"@unicef-polymer/etools-app-selector": "^3.1.8",
"@unicef-polymer/etools-behaviors": "^3.0.5",
"@unicef-polymer/etools-date-time": "^1.0.6",
"@unicef-polymer/etools-info-tooltip": "^3.2.0",
"@unicef-polymer/etools-loading": "^4.0.6",
"@unicef-polymer/etools-piwik-analytics": "^3.0.2",
"@unicef-polymer/etools-profile-dropdown": "^4.0.6",
"@webcomponents/webcomponentsjs": "^2.6.0",
"cryptiles": ">=4.1.3",
"dayjs": "^1.10.7",
"lodash": ">=4.17.21",
"lodash-es": "^4.17.21",
"pwa-helpers": "^0.9.1",
"ramda": "^0.27.1",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"stringstream": ">=0.0.6",
"dexie": ">=3.2.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"@typescript-eslint/typescript-estree": "^3.10.1",
"eslint": "^7.20.0",
"eslint-config-google": "^0.13.0",
"eslint-plugin-html": "^6.1.1",
"extend": ">=3.0.2",
"gulp": "^4.0.2",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"js-yaml": "^4.0.0",
"polymer-cli": "^1.9.11",
"typescript": "^3.9.7",
"ua-parser-js": ">=1.0.33",
"ajv": ">=6.12.6",
"follow-redirects": ">=1.14.9",
"shelljs": ">=0.8.5",
"node-fetch": ">=2.6.7",
"path-parse": ">=1.0.7",
"mout": ">=1.2.4",
"urijs": ">=1.19.11",
"thenify": ">=3.3.1",
"json5": ">=2.2.3",
"qs": ">=6.5.3",
"decode-uri-component": ">=0.2.2",
"engine.io": ">=3.6.1",
"socket.io": ">=2.5.0",
"socket.io-parser": ">=3.3.3",
"async": ">=2.6.4",
"wd": ">=1.14.0",
"minimatch": ">=3.1.2"
}
}