-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.22 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
{
"name": "route-strategies",
"version": "1.0.0",
"contributors": [
"garyvh2"
],
"license": "BSD-0-Clause",
"repository": "route-strategies",
"scripts": {
"dev": "polymer serve --compile | npm run watch",
"start": "polymer serve",
"watch": "browser-sync start --proxy localhost:8081 --files '**/*.html, **/*.js' ",
"build": "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": "mocha test/integration --timeout=10000",
"test:unit": "polymer test --module-resolution=node --npm",
"test:sauce": "polymer test --module-resolution=node --npm -s 'windows 10/microsoftedge@17' -s 'macos 10.13/safari@11'",
"test:regenerate_screenshots": "mocha src/test/integration/screenshots-baseline/regenerate.js --timeout=15000"
},
"dependencies": {
"@polymer/app-layout": "^3.0.0-pre.21",
"@polymer/lit-element": "^0.5.2",
"@vaadin/router": "^1.1.0",
"@vaadin/vaadin-button": "^2.1.0",
"@vaadin/vaadin-icons": "^4.2.0",
"@vaadin/vaadin-material-styles": "^1.1.2",
"@vaadin/vaadin-tabs": "^2.1.0",
"@vaadin/vaadin-text-field": "^2.1.2",
"@webcomponents/webcomponentsjs": "^2.0.0",
"normalize.css": "^8.0.0",
"pwa-helpers": "^0.8.2",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1"
},
"devDependencies": {
"axe-core": "^3.0.0",
"browser-sync": "^2.24.7",
"chai": "^4.1.2",
"del": "^3.0.0",
"eslint": "^5.4.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"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.7.6",
"polyserve": "^0.27.0",
"prpl-server": "^1.2.0",
"puppeteer": "^1.5.0",
"wct-browser-legacy": "^1.0.1"
}
}