-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 840 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 840 Bytes
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
{
"name": "sbahn-tracker",
"version": "2.0.0-alpha.1",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 5050",
"lint": "eslint --ext .js,.vue,.ts,.json --ignore-pattern .gitignore src",
"prettier": "prettier src --write"
},
"type": "module",
"dependencies": {
"vue": "^3.5.29",
"vue-router": "^5.0.3"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.4",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-vue": "^10.8.0",
"leaflet": "^1.9.4",
"prettier": "^3.8.1",
"vite": "^7.3.1"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"printWidth": 100
}
}