This repository has been archived by the owner on Jun 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
98 lines (98 loc) · 3.27 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
{
"name": "polymer3-webpack-starter",
"version": "0.1.0",
"author": "Vaadin Ltd",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/web-padawan/polymer3-webpack-starter.git"
},
"dependencies": {
"@polymer/iron-ajax": "^3.0.1",
"@polymer/iron-form": "^3.0.1",
"@polymer/iron-icon": "^3.0.1",
"@polymer/polymer": "^3.3.1",
"@vaadin/router": "^1.7.1",
"@vaadin/vaadin-app-layout": "^2.0.5",
"@vaadin/vaadin-button": "^2.2.2",
"@vaadin/vaadin-checkbox": "^2.2.12",
"@vaadin/vaadin-combo-box": "^5.0.11",
"@vaadin/vaadin-context-menu": "^4.3.15",
"@vaadin/vaadin-date-picker": "^4.0.8",
"@vaadin/vaadin-dialog": "^2.2.1",
"@vaadin/vaadin-form-layout": "^2.1.7",
"@vaadin/vaadin-grid": "^5.5.2",
"@vaadin/vaadin-item": "^2.1.1",
"@vaadin/vaadin-list-box": "^1.2.0",
"@vaadin/vaadin-lumo-styles": "^1.6.0",
"@vaadin/vaadin-notification": "^1.4.0",
"@vaadin/vaadin-ordered-layout": "^1.1.0",
"@vaadin/vaadin-progress-bar": "^1.1.2",
"@vaadin/vaadin-radio-button": "^1.2.6",
"@vaadin/vaadin-select": "^2.1.7",
"@vaadin/vaadin-split-layout": "^4.1.1",
"@vaadin/vaadin-tabs": "^3.0.5",
"@vaadin/vaadin-text-field": "^2.5.4",
"@vaadin/vaadin-time-picker": "^2.0.7",
"@vaadin/vaadin-upload": "^4.2.2",
"@webcomponents/webcomponentsjs": "^2.4.3",
"connect-history-api-fallback": "^1.6.0",
"express": "^4.17.1",
"express-static-gzip": "^2.0.6"
},
"devDependencies": {
"@babel/plugin-external-helpers": "^7.8.3",
"babel-loader": "^8.0.6",
"babel-plugin-template-html-minifier": "^4.0.0",
"babel-preset-minify": "^0.5.1",
"brotli-webpack-plugin": "^1.1.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.1.0",
"concurrently": "^5.1.0",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-vaadin": "^0.2.7",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"stylelint": "^13.2.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-vaadin": "^0.2.5",
"terser-webpack-plugin": "^2.3.5",
"uglify-template-string-loader": "^1.1.1",
"webpack": "^4.42.0",
"webpack-babel-multi-target-plugin": "^2.3.3",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2",
"workbox-webpack-plugin": "^4.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"scripts": {
"build:analyze": "webpack --env production --analyze",
"build": "webpack --env production",
"client": "webpack-dev-server --env development",
"server": "nodemon server.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"lint:js": "eslint src/app/*.js src/views/*.js src/styles/*.js",
"lint:css": "stylelint --syntax html src/views/*.js src/styles/*.js",
"lint": "npm-run-all --parallel lint:*",
"postinstall": "node utils/generate-helpers.js && npm run build",
"start": "node server.js"
}
}