-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.07 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": "OJS3",
"description": "Open Journal Systems (OJS) is a journal management and publishing system that has been developed by the Public Knowledge Project through its federally funded efforts to expand and improve access to research.",
"version": "3.2.0",
"author": "Public Knowledge Project",
"private": true,
"scripts": {
"dev": "vue-cli-service build --no-clean --watch",
"build": "vue-cli-service build --no-clean",
"lint": "vue-cli-service lint js/load.js lib/pkp/js/load.js lib/pkp/js/classes/VueRegistry.js"
},
"dependencies": {
"@tinymce/tinymce-vue": "^1.1.0",
"chart.js": "^2.8.0",
"debounce": "^1.2.0",
"tinymce": "^4.9.4",
"v-tooltip": "^2.0.2",
"vue": "^2.6.10",
"vue-chartjs": "^3.4.2",
"vue-color": "^2.7.0",
"vue-scrollto": "^2.15.0",
"vue-slider-component": "^2.8.16",
"vue-tabs-component": "^1.5.0",
"vue2-dropzone": "^3.5.9",
"vuedraggable": "^2.20.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.7.0",
"@vue/cli-plugin-eslint": "^3.7.0",
"@vue/cli-service": "^3.7.0",
"@vue/eslint-config-prettier": "^4.0.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.2",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"lint-staged": "^8.1.6",
"vue-template-compiler": "^2.6.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/prettier"
],
"globals": {
"$": true,
"pkp": true
},
"rules": {
"prettier/prettier": [
"warn",
{
"bracketSpacing": false,
"singleQuote": true,
"useTabs": true,
"htmlWhitespaceSensitivity": "ignore"
}
],
"no-unused-vars": [
"error",
{
"args": "none"
}
]
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
]
}