-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.13 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
{
"name": "confidentiality-visualizer",
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview --port 5050",
"test:unit": "vitest --environment jsdom",
"coverage": "vitest run --coverage --environment jsdom",
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"check-lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"check-format": "prettier --ignore-path .gitignore --check \"**/*.+(js|ts|json)\"",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"prepare": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.2.1",
"@popperjs/core": "^2.11.6",
"bootstrap": "^5.2.3",
"browser-or-node": "^2.1.1",
"class-transformer": "^0.5.1",
"iconify-icon": "^1.0.2",
"leaflet": "^1.9.3",
"reflect-metadata": "^0.1.13",
"vue": "^3.2.38",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.2.0",
"@faker-js/faker": "^7.6.0",
"@intlify/vite-plugin-vue-i18n": "^6.0.3",
"@rushstack/eslint-patch": "^1.2.0",
"@types/jsdom": "^20.0.1",
"@types/leaflet": "^1.9.0",
"@types/node": "^18.11.9",
"@vitejs/plugin-vue": "^2.3.4",
"@vitest/coverage-c8": "^0.28.5",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.2.6",
"@vue/tsconfig": "^0.1.3",
"c8": "^7.12.0",
"eslint": "^8.27.0",
"eslint-plugin-vue": "^8.2.0",
"husky": "^8.0.2",
"jsdom": "^20.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.4",
"typescript": "~4.9.4",
"vite": "^2.9.14",
"vitest": "^0.23.4",
"vue-tsc": "^0.40.13"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": "eslint --ignore-path .gitignore --cache --fix",
"*.+(js|ts|json)": "prettier --ignore-path .gitignore --write"
}
}