-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
133 lines (133 loc) · 3.98 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@agencebio/cartobio-front",
"version": "2.32.4",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"dev-sw": "vite build --watch & (sleep 1 && vite preview --port 3000)",
"build": "npm run build:app",
"build:app": "vite build",
"build:widget": "vite build --config vite.widget.config.js --mode lib",
"build:widget-demo": "vite build --config vite.widget.config.js",
"postbuild": "npm run build:widget && npm run build:widget-demo",
"preview": "vite preview",
"start": "vite",
"test": "vitest --coverage",
"posttest": "eslint ./src",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 1 -u",
"prettier:format": "prettier --write \"**/*.{vue,ts,tsx,js,md,json,css,yaml}\"",
"prettier:check": "prettier --check \"**/*.{vue,ts,tsx,js,md,json,css,yaml}\""
},
"engines": {
"node": "^20.0.0"
},
"dependencies": {
"@agencebio/rosetta-cultures": "^2.3.1",
"@algolia/autocomplete-js": "^1.8.3",
"@algolia/autocomplete-theme-classic": "^1.8.3",
"@gouvfr/dsfr": "1.11.2",
"@sentry/vue": "^8.33.1",
"@turf/area": "^7.1.0",
"@turf/bbox": "^6.5.0",
"@turf/bbox-polygon": "^6.5.0",
"@turf/centroid": "^6.5.0",
"@turf/difference": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@turf/intersect": "^6.5.0",
"@turf/line-split": "^7.1.0",
"@turf/nearest-point-on-line": "^7.1.0",
"@turf/point-to-line-distance": "^7.1.0",
"@turf/turf": "^7.1.0",
"@turf/union": "^6.5.0",
"@unhead/vue": "^1.0.6",
"@vueuse/core": "^9.6.0",
"axios": "^1.7.4",
"fuse.js": "^6.6.2",
"geometric": "^2.5.4",
"maplibre-gl": "^4.3.2",
"pinia": "^2.0.26",
"polygon-splitter": "^0.0.11",
"proj4": "^2.11.0",
"remixicon": "^4.5.0",
"reproject": "^1.2.7",
"terra-draw": "^0.0.1-alpha.49",
"vue": "^3.3.11",
"vue-matomo": "^4.1.0",
"vue-router": "^4.0.12",
"vue3-toastify": "^0.1.11",
"xlsx": "git+https://git.sheetjs.com/sheetjs/sheetjs.git#2669c7c"
},
"devDependencies": {
"@agencebio/cartobio-types": "^1.6.1",
"@pinia/testing": "^0.1.3",
"@testing-library/vue": "^8.0.1",
"@vitejs/plugin-legacy": "^5.2.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-istanbul": "^1.6.1",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.3.2",
"autoprefixer": "^10.4.2",
"eslint": "^8.6.0",
"jsdom": "^24.0.0",
"postcss-preset-env": "^8.3.2",
"prettier": "^3.3.3",
"typescript": "^5.0.4",
"vite": "^5.4.14",
"vite-plugin-pages": "^0.32.0",
"vite-plugin-pwa": "^0.19.2",
"vitest": "^1.6.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"eslint:recommended",
"plugin:vue/vue3-essential",
"@vue/eslint-config-typescript/recommended"
],
"ignorePatterns": [
"src/stores/storage.test.js",
"src/stores/record.test.js",
"src/utils/export-strategies/*.test.js",
"src/components/records/Table/FeatureGroup.test.js",
"src/components/forms/SingleItem*.test.js",
"src/components/setup/Flow/index.test.js",
"src/components/records/Table/index.test.js",
"src/components/records/Header.test.js",
"src/pages/certification/exploitations/index.test.js",
"src/pages/exploitations/\\[numeroBio\\]/index.test.js"
],
"rules": {
"no-unused-vars": "warn",
"vue/multi-word-component-names": "off",
"vue/no-mutating-props": "warn",
"vue/no-multiple-template-root": "off",
"vue/no-undef-properties": "warn",
"vue/script-setup-uses-vars": "error"
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
}
},
"postcss": {
"plugins": {
"postcss-preset-env": {
"features": {
"gap-properties": 1,
"nesting-rules": true
}
},
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8",
"since 2019"
]
}