This repository has been archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.29 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
{
"name": "ts-vaadin-demo",
"version": "0.1.0",
"author": "Vaadin Ltd",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/web-padawan/ts-vaadin-demo.git"
},
"dependencies": {
"@polymer/polymer": "^3.4.1",
"@vaadin/router": "^1.7.4",
"@vaadin/app-layout": "^23.0.3",
"@vaadin/button": "^23.0.3",
"@vaadin/charts": "^23.0.3",
"@vaadin/checkbox": "^23.0.3",
"@vaadin/combo-box": "^23.0.3",
"@vaadin/context-menu": "^23.0.3",
"@vaadin/date-picker": "^23.0.3",
"@vaadin/dialog": "^23.0.3",
"@vaadin/grid": "^23.0.3",
"@vaadin/item": "^23.0.3",
"@vaadin/list-box": "^23.0.3",
"@vaadin/notification": "^23.0.3",
"@vaadin/select": "^23.0.3",
"@vaadin/tabs": "^23.0.3",
"@vaadin/text-field": "^23.0.3",
"@vaadin/time-picker": "^23.0.3",
"@vaadin/vaadin-lumo-styles": "^23.0.3",
"@vaadin/vaadin-themable-mixin": "^23.0.3",
"connect-history-api-fallback": "^1.6.0",
"express": "^4.17.1",
"lit": "^2.0.0",
"lit-vaadin-helpers": "^0.3.1",
"serve-static": "^1.14.1"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"dot": "^1.1.3",
"esbuild-loader": "^2.18.0",
"eslint": "^7.32.0",
"eslint-config-vaadin": "^0.4.0",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"html-webpack-plugin": "^5.5.0",
"lint-staged": "^11.1.2",
"lit-analyzer": "^1.2.1",
"minify-html-literals": "^1.3.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"prismjs": "^1.27.0",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.6.1",
"ts-lit-plugin": "^1.2.1",
"typescript": "^4.4.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"scripts": {
"build": "npm run docs && webpack --mode production",
"docs": "rimraf docs && node build-docs.js",
"lint": "npm-run-all --parallel lint:*",
"lint:js": "eslint src --ext .ts --ignore-path .gitignore",
"lint:lit": "lit-analyzer src --strict",
"dev": "webpack serve --mode development",
"start": "node server.js"
}
}