-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
89 lines (89 loc) · 3.01 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
{
"name": "OPS",
"description": "Open Preprint Systems (OPS) is a preprint server management system that has been developed by the Public Knowledge Project through its federally funded efforts to expand and improve access to research.",
"version": "3.5.0",
"author": "Public Knowledge Project",
"private": true,
"scripts": {
"dev": "vite build --watch --mode development",
"build": "vite build",
"lint": "eslint --fix ./js/load.js ./lib/pkp/js/load.js ./lib/pkp/js/usage-stats-chart.js ./lib/pkp/js/classes/VueRegistry.js",
"format": "prettier --write ./js/load.js ./lib/pkp/js/load.js ./lib/pkp/js/usage-stats-chart.js ./lib/pkp/js/classes/VueRegistry.js",
"php-fix": "php lib/pkp/lib/vendor/bin/php-cs-fixer fix --config .php-cs-fixer.php --allow-risky=yes",
"prepare": "husky install",
"postinstall": "copyfiles -f node_modules/swiper/swiper-bundle*.{js,css} plugins/themes/default/js/lib/swiper"
},
"dependencies": {
"@headlessui/vue": "^1.7.16",
"@highlightjs/vue-plugin": "^2.1.0",
"@lk77/vue3-color": "^3.0.6",
"@tinymce/tinymce-vue": "^5.1.1",
"@vue-a11y/announcer": "^3.1.5",
"@vueuse/core": "10.5",
"chart.js": "^4.4.3",
"clone-deep": "^4.0.1",
"copyfiles": "^2.4.1",
"debounce": "^1.2.0",
"dropzone-vue3": "^1.0.2",
"element-resize-event": "^3.0.6",
"floating-vue": "^2.0.0-beta.24",
"highlight.js": "^11.9.0",
"jquery": "^3.7.1",
"jquery-ui": "^1.13.3",
"jquery-validation": "~1.19.5",
"moment": "^2.29.4",
"ofetch": "^1.3.3",
"pinia": "^2.1.7",
"primevue": "^4.0.5",
"swiper": "^10.3.1",
"tiny-emitter": "^2.1.0",
"tinymce": "^5.10.9",
"uuid": "^9.0.0",
"vue": "^3.3.4",
"vue-chartjs": "^5.2.0",
"vue-draggable-plus": "^0.2.4",
"vue-scrollto": "^2.20.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/eslint-config-prettier": "^8.0.0",
"autoprefixer": "^10.4.14",
"cypress": "^12.17.1",
"cypress-failed-log": "^2.7.0",
"cypress-file-upload": "^5.0.8",
"cypress-wait-until": "^1.7.1",
"eslint": "^8.48.0",
"eslint-plugin-vue": "^9.17.0",
"google-closure-compiler-java": "^20200719.0.0",
"husky": "^8.0.3",
"less": "^4.2.0",
"lint-staged": "^14.0.1",
"postcss": "^8.4.27",
"prettier": "^3.0.2",
"rollup-plugin-copy": "^3.4.0",
"tailwindcss": "^3.3.3"
},
"prettier": {
"$schema": "https://json.schemastore.org/prettierrc",
"bracketSpacing": false,
"singleQuote": true,
"useTabs": true,
"htmlWhitespaceSensitivity": "ignore",
"proseWrap": "never"
},
"postcss": {
"plugins": {
"autoprefixer": {},
"tailwindcss": {
"config": "./lib/ui-library/tailwind.config.js"
}
}
},
"lint-staged": {
"**/*.php": [
"php lib/pkp/lib/vendor/bin/php-cs-fixer fix --config .php-cs-fixer.php --allow-risky=yes",
"php lib/pkp/lib/vendor/bin/php-cs-fixer fix --config .php-cs-fixer.php --allow-risky=yes --dry-run"
]
}
}