-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
{
"name": "signal-app",
"version": "0.0.0",
"engines": {
"node": ">18.0.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint --ext .ts,.js,.vue src scripts --fix",
"prepare": "husky install"
},
"dependencies": {
"arquero": "^5.2.0",
"bulma": "^0.9.3",
"d3-format": "^3.1.0",
"date-fns": "^2.29.3",
"firebase": "^10.3.1",
"handlebars": "^4.7.7",
"lodash": "^4.17.21",
"pinia": "^2.0.9",
"sanitize-html": "^2.7.3",
"topojson-client": "^3.1.0",
"topojson-server": "^3.0.1",
"topojson-simplify": "^3.0.3",
"vega": "^5.21.0",
"vega-embed": "^6.20.5",
"vega-lite": "^5.15.0",
"vue": "^3.2.26",
"vue-router": "^4.0.12",
"zipson": "^0.2.12"
},
"devDependencies": {
"@types/lodash": "^4.14.178",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-vue": "^4.3.4",
"argparse": "^2.0.1",
"csv-parse": "^5.3.3",
"eslint": "^8.6.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.5.1",
"firebase-admin": "^11.10.1",
"firebase-tools": "^12.5.4",
"husky": "^8.0.1",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"sass": "^1.67.0",
"typescript": "^5.2.2",
"utility-types": "^3.10.0",
"vite": "^4.4.9"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --ext .ts,.js,.vue src scripts --fix"
]
}
}