-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 4.54 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
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "etools-apps-base-shell",
"description": "Etools Apps Base - starting point for etools apps - based on PWA starter kit",
"version": "2.0.0",
"contributors": [
"eTools Team"
],
"license": "BSD-3-Clause",
"repository": "https://github.com/unicef-polymer/etools-frontend-template",
"scripts": {
"tsToJs": "tsc --skipLibCheck",
"tsEslint": "node_modules/eslint/bin/eslint.js 'src_ts/**' --fix",
"start": "gulp serve",
"build": "tsc && npm run build:prpl-server && npm run build:static",
"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",
"lint:eslint": "eslint --ext .ts,.html . --ignore-path .gitignore",
"format:eslint": "eslint --ext .ts,.html . --fix --ignore-path .gitignore",
"lint:prettier": "prettier \"**/*.ts\" --check --ignore-path .gitignore",
"format:prettier": "prettier \"**/*.ts\" --write --ignore-path .gitignore",
"lint": "npm run lint:eslint",
"format": "npm run format:eslint"
},
"dependencies": {
"@polymer/app-layout": "^3.0.1",
"@polymer/app-route": "^3.0.2",
"@polymer/decorators": "^3.0.0",
"@polymer/iron-icons": "^3.0.1",
"@polymer/iron-label": "^3.0.1",
"@polymer/iron-pages": "^3.0.1",
"@polymer/iron-selector": "^3.0.1",
"@polymer/paper-button": "^3.0.1",
"@polymer/paper-checkbox": "^3.1.0",
"@polymer/paper-icon-button": "^3.0.1",
"@polymer/paper-input": "^3.0.1",
"@polymer/paper-item": "^3.0.1",
"@polymer/paper-listbox": "^3.0.1",
"@polymer/paper-menu-button": "^3.1.0",
"@polymer/paper-progress": "^3.0.1",
"@polymer/paper-radio-button": "^3.0.1",
"@polymer/paper-radio-group": "^3.0.1",
"@polymer/paper-ripple": "^3.0.1",
"@polymer/paper-slider": "^3.0.1",
"@polymer/paper-styles": "^3.0.1",
"@polymer/paper-tabs": "^3.0.1",
"@polymer/paper-toast": "^3.0.1",
"@polymer/paper-toggle-button": "^3.0.1",
"@polymer/paper-tooltip": "^3.0.1",
"@polymer/polymer": "^3.4.1",
"@types/lodash-es": "^4.17.4",
"@unicef-polymer/etools-ajax": "^4.2.0",
"@unicef-polymer/etools-app-selector": "^3.1.5",
"@unicef-polymer/etools-behaviors": "^3.0.3",
"@unicef-polymer/etools-content-panel": "^4.0.0",
"@unicef-polymer/etools-currency-amount-input": "^3.0.7",
"@unicef-polymer/etools-data-table": "^5.1.0",
"@unicef-polymer/etools-date-time": "^1.0.6-rc.6",
"@unicef-polymer/etools-dialog": "^4.2.2",
"@unicef-polymer/etools-dropdown": "^3.4.3",
"@unicef-polymer/etools-info-tooltip": "^3.1.0",
"@unicef-polymer/etools-loading": "^4.0.4",
"@unicef-polymer/etools-piwik-analytics": "^3.1.0",
"@unicef-polymer/etools-profile-dropdown": "^5.0.4",
"@unicef-polymer/etools-table": "^1.1.2",
"@unicef-polymer/etools-types": "^1.0.5",
"@unicef-polymer/etools-upload": "^3.4.0",
"@webcomponents/webcomponentsjs": "^2.5.0",
"dayjs": "^1.10.4",
"lit-element": "^2.4.0",
"lit-translate": "^1.2.1",
"lodash-es": "^4.17.21",
"pwa-helpers": "^0.9.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"web-animations-js": "^2.3.2"
},
"devDependencies": {
"@polymer/decorators": "^3.0.0",
"@polymer/test-fixture": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"@typescript-eslint/typescript-estree": "^3.4.0",
"axe-core": "^3.5.5",
"chai": "^4.1.2",
"del": "^3.0.0",
"eslint": "^7.3.1",
"eslint-config-google": "^0.13.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-lit": "^1.2.0",
"eslint-plugin-prettier": "^3.1.4",
"gulp": "^4.0.0",
"gulp-rename": "^1.3.0",
"gulp-replace": "^1.0.0",
"mocha": "^5.2.0",
"pixelmatch": "^4.0.2",
"polymer-cli": "^1.9.2",
"polyserve": "^0.27.0",
"prettier": "^2.0.5",
"prpl-server": "^1.3.0",
"puppeteer": "^1.5.0",
"typescript": "^3.1.3",
"wct-mocha": "^1.0.0"
}
}