forked from chartes/lettres-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.95 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
{
"name": "lettres-vue",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --port 9090",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"eslint-fix": "npm run lint -- --fix",
"test": "jest --no-cache"
},
"dependencies": {
"@blueprintjs/core": "^3.28.2",
"@blueprintjs/icons": "^3.18.1",
"@creativebulma/bulma-divider": "^1.1.0",
"@fortawesome/fontawesome-svg-core": "^1.2.13",
"@fortawesome/free-regular-svg-icons": "^5.7.0",
"@fortawesome/free-solid-svg-icons": "^5.7.0",
"@fortawesome/vue-fontawesome": "^0.1.7",
"acorn": "^7.1.1",
"axios": "^0.21.1",
"axios-auth-refresh": "^3.1.0",
"buefy": "^0.9.20",
"core-js": "^3.1.2",
"leaflet": "^1.7.1",
"lodash": "^4.17.15",
"mirador": "^3.2.0",
"mutationobserver-shim": "^0.3.3",
"quill": "^1.3.7",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"vue": "^2.6.12",
"vue-click-outside": "^1.1.0",
"vue-inputmask": "^0.2.1",
"vue-router": "^3.5.1",
"vue2-leaflet": "^2.7.1",
"vuedraggable": "^2.24.3",
"vuex": "^3.6.2",
"wikidata-entity-lookup": "^2.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.6.3",
"@vue/cli-plugin-babel": "^4.0.5",
"@vue/cli-plugin-eslint": "^4.0.5",
"@vue/cli-service": "^4.3.1",
"@vue/server-test-utils": "^1.0.0-beta.29",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.9.0",
"bulma": "^0.9.3",
"eslint": "^7.0.0",
"eslint-plugin-jest": "^22.20.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^7.20.0",
"faker": "^4.1.0",
"jest": "^24.9.0",
"jest-environment-jsdom-thirteen": "^1.0.1",
"jest-environment-puppeteer": "^4.3.0",
"material-design-icons-iconfont": "^6.1.1",
"sass": "^1.44.0",
"puppeteer": "^1.20.0",
"regenerator-runtime": "^0.13.3",
"sass-loader": "^10.1.1",
"svg-inline-loader": "^0.8.2",
"vue-jest": "^3.0.5",
"vue-loader": "^15.7.1",
"vue-server-renderer": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"jest/globals": true
},
"plugins": [
"jest"
],
"extends": [
"plugin:vue/recommended",
"eslint:recommended"
],
"rules": {
"no-mixed-spaces-and-tabs": 0,
"no-unused-vars": 0,
"no-console": 0,
"no-restricted-syntax": [
"error",
{
"selector": "CallExpression[callee.object.name='console'][callee.property.name!=/^(log|warn|error|info|trace)$/]",
"message": "Unexpected property on console object was called"
}
],
"vue/no-v-html": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}