-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 967 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 967 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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "environment-score",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:integration": "vitest --run integration",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:lint": "prettier --write . && eslint . --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"leaflet": "^1.9.4",
"prettier": "^3.6.2",
"vue": "^3.5.22",
"vue-i18n": "^9.14.5",
"vue-router": "^4.6.3"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.1",
"@vue/test-utils": "^2.4.3",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.20.0",
"happy-dom": "^20.0.9",
"vite": "^7.1.12",
"vitest": "^4.0.4"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": false
}
}