-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.11 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
{
"name": "cs-buchholz-simulator",
"description": "Make accurate Counter-Strike RMR and Major Pick'Em predictions by providing head-to-head matchup odds and simulating thousands of group stages.",
"license": "MIT",
"author": {
"name": "Charlie Laabs",
"url": "https://github.com/claabs"
},
"version": "1.1.0",
"type": "module",
"scripts": {
"lint": "tsc --noEmit && eslint .",
"build": "rimraf dist && tsc && rollup -c rollup.config.js && npm run analyze -- --exclude dist",
"start:build": "web-dev-server --root-dir dist --app-index index.html",
"analyze": "cem analyze --litelement",
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
"update-points": "vite-node update-rankings.ts"
},
"dependencies": {
"@google-web-components/google-chart": "^5.0.3",
"@vaadin-component-factory/vcf-slider": "^23.3.6",
"@vaadin/accordion": "^24.0.3",
"@vaadin/button": "^24.0.2",
"@vaadin/combo-box": "24.0",
"@vaadin/details": "24.0",
"@vaadin/dialog": "^24.0.2",
"@vaadin/form-layout": "^24.0.2",
"@vaadin/grid": "^24.0.2",
"@vaadin/horizontal-layout": "^24.0.2",
"@vaadin/icon": "^24.0.3",
"@vaadin/icons": "^24.0.3",
"@vaadin/notification": "24.0",
"@vaadin/number-field": "^24.0.2",
"@vaadin/progress-bar": "24.0",
"@vaadin/select": "~24.0",
"@vaadin/split-layout": "^24.0.3",
"@vaadin/tabs": "^24.0.3",
"@vaadin/tabsheet": "^24.0.3",
"@vaadin/tooltip": "^24.0.3",
"@vaadin/vertical-layout": "^24.0.2",
"color-scales": "^3.0.2",
"immer": "^10.0.1",
"lit": "^2.0.2",
"workbox-window": "^6.6.0"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@custom-elements-manifest/analyzer": "^0.4.17",
"@open-wc/building-rollup": "^2.0.2",
"@open-wc/eslint-config": "^9.2.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^5.0.2",
"@surma/rollup-plugin-off-main-thread": "^2.2.3",
"@tsconfig/strictest": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"@web/dev-server": "^0.1.34",
"@web/rollup-plugin-copy": "^0.4.0",
"@web/rollup-plugin-html": "^1.11.0",
"@web/rollup-plugin-import-meta-assets": "^1.0.7",
"babel-plugin-template-html-minifier": "^4.1.0",
"concurrently": "^5.3.0",
"deepmerge": "^4.2.2",
"eslint": "^8.31.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"hltv": "^3.5.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.8.7",
"rimraf": "^3.0.2",
"rollup": "^2.79.2",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-workbox": "^6.2.0",
"tslib": "^2.3.1",
"typescript": "4.7",
"vite-node": "^1.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint"
]
},
"customElements": "custom-elements.json"
}