-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"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-path .gitignore src",
"prettier": "prettier src --write"
},
"type": "module",
"dependencies": {
"vue": "^3.3.9",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^9.18.1",
"leaflet": "^1.9.4",
"prettier": "^3.1.0",
"vite": "^5.0.3"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"printWidth": 100
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:vue/vue3-recommended",
"plugin:prettier/recommended",
"prettier"
],
"globals": {
"defineEmits": true,
"defineExpose": true,
"defineProps": true
}
}
}