-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 2.43 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "rennes3D-front",
"version": "0.0.1",
"engines": {
"node": ">=14"
},
"scripts": {
"start": "npm run dev",
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview --port 4173",
"test": "npm run test:unit",
"test:unit": "vitest --environment jsdom",
"test:coverage": "vitest --environment jsdom --coverage",
"test:unit:ci": "vitest run --environment jsdom --coverage",
"test:e2e": "start-server-and-test preview http://localhost:4173/ 'cypress open --e2e'",
"test:e2e:ci": "start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint:js": "eslint . --ext .vue,.js,.cjs,.mjs,.ts,.cts,.mts --ignore-path .gitignore",
"lint:prettier": "prettier --check .",
"lint": "npm run lint:js && npm run lint:prettier",
"format": "prettier --write --list-different . && npm run lint:js -- --fix",
"prepare": "husky install",
"story": "histoire dev",
"story:build": "histoire build",
"story:preview": "histoire preview"
},
"dependencies": {
"@heroicons/vue": "^2.0.11",
"@pinia/testing": "^0.0.14",
"@vcmap/core": "^5.0.0-rc.23",
"ol": "^7.1.0",
"pinia": "^2.0.21",
"rollup-plugin-strip-pragma": "^1.0.0",
"tailwind-scrollbar-hide": "^1.1.7",
"vue": "^3.2.38",
"vue-router": "^4.1.5"
},
"devDependencies": {
"@histoire/plugin-vue": "^0.10.7",
"@rushstack/eslint-patch": "^1.1.4",
"@types/jsdom": "^20.0.0",
"@types/node": "^16.11.56",
"@vitejs/plugin-vue": "^3.0.3",
"@vitest/coverage-c8": "^0.23.2",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.0.2",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.9",
"cypress": "^10.7.0",
"eslint": "^8.22.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^9.3.0",
"histoire": "^0.10.7",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.1.8",
"typescript": "~4.7.4",
"vite": "^3.0.9",
"vitest": "^0.23.0",
"vue-tsc": "^0.40.7"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache",
"*.**": "prettier --check --ignore-unknown"
}
}