-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.24 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
{
"name": "validata-forms",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --host localhost",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"build-production": "vue-cli-service build --mode production",
"i18n:report": "vue-cli-service i18n:report --src \"./src/**/*.?(js|vue)\" --locales \"./src/locales/**/*.json\"",
"now-build": "vue-cli-service build",
"now-dev": "vue-cli-service serve --port=$PORT",
"start": "npx vue-cli-service serve --port=5000"
},
"dependencies": {
"@gouvfr/dsfr": "^1.10.0",
"@vue/cli-shared-utils": "^5.0.8",
"axios": "^0.21.1",
"babel-runtime": "^6.26.0",
"bootstrap": "^4.6.2",
"bootstrap-vue": "^2.23.1",
"csv-parser": "^3.0.0",
"date-fns": "^2.16.1",
"latinize": "^0.5.0",
"leaflet": "^1.7.1",
"moment": "^2.29.1",
"node-sass": "^5.0.0",
"papaparse": "^5.3.0",
"pkce": "^1.0.0-beta2",
"pug": "^3.0.0",
"pug-plain-loader": "^1.0.0",
"query-string": "^6.13.8",
"sass-loader": "^10.1.0",
"vue": "^2.6.6",
"vue-axios": "^3.2.2",
"vue-client-only": "^2.0.0",
"vue-clipboard2": "^0.3.1",
"vue-i18n": "^8.26.3",
"vue-loading-overlay": "^3.2.0",
"vue-markdown": "^2.2.4",
"vue-multiselect": "^2.1.6",
"vue-router": "^3.0.1",
"vue-simple-accordion": "^0.1.0",
"vue-simple-suggest": "^1.10.3",
"vue2-leaflet": "^2.6.0",
"vuex": "^3.6.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.12.0",
"@vue/cli-plugin-eslint": "^3.12.0",
"@vue/cli-service": "^3.12.0",
"babel-eslint": "^10.0.1",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.5.0",
"vue-cli-plugin-i18n": "~2.3.2",
"vue-i18n": "^8.28.2",
"vue-template-compiler": "^2.5.21"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}