-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.56 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
{
"name": "transport-community-contributions",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"test:unit": "jest --testPathPattern=tests/unit",
"test:e2e": "cypress open"
},
"dependencies": {
"@octokit/rest": "^19.0.7",
"diff-match-patch": "^1.0.5",
"isomorphic-fetch": "^3.0.0",
"js-base64": "^3.7.5",
"jschardet": "^3.0.0",
"leaflet": "^1.9.3",
"papaparse": "^5.4.1",
"vue": "^3.2.47"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@vitejs/plugin-vue": "^4.2.1",
"@vue/test-utils": "^2.3.2",
"@vue/vue3-jest": "^29.2.3",
"babel-core": "6.26.3",
"babel-jest": "^29.5.0",
"cypress": "^12.10.0",
"eslint": "^8.39.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-vue": "^9.11.0",
"jest": "^29.5.0",
"sass": "^1.62.0",
"template.data.gouv.fr": "^1.3.2",
"vite": "^4.3.3"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"jest": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"plugin:cypress/recommended"
],
"rules": {},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}