-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.6 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.6 KB
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
{
"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.6.0",
"author": "Public Knowledge Project",
"private": true,
"scripts": {
"dev": "vite build --watch --mode development",
"dev:frontend": "vite build --watch --mode development --config vite.config.frontend.js",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "vite build",
"build:frontend": "vite build --config vite.config.frontend.js",
"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 && copyfiles -f node_modules/altcha/dist/altcha.js lib/pkp/js/lib/altcha"
},
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "^1.7.7",
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.1.0",
"@headlessui/vue": "^1.7.23",
"@highlightjs/vue-plugin": "^2.1.2",
"@lk77/vue3-color": "^3.0.6",
"@tinymce/tinymce-vue": "^6.1.0",
"@vue-a11y/announcer": "^3.1.5",
"@vueuse/core": "10.11",
"altcha": "^1.4.2",
"chart.js": "^4.4.8",
"clone-deep": "^4.0.1",
"copyfiles": "^2.4.1",
"debounce": "^1.2.1",
"dropzone-vue3": "^1.0.2",
"element-resize-event": "^3.0.6",
"floating-vue": "^2.0.0",
"highlight.js": "^11.11.1",
"jquery": "^3.7.1",
"jquery-ui": "^1.14.1",
"jquery-validation": "~1.21.0",
"luxon": "^3.6.1",
"ofetch": "^1.4.1",
"pinia": "^2.3.1",
"primevue": "^4.3.3",
"reka-ui": "^2.8.0",
"swiper": "^10.3.1",
"tiny-emitter": "^2.1.0",
"tinymce": "^7.8.0",
"uuid": "^9.0.1",
"vue": "^3.5.13",
"vue-chartjs": "^5.3.2",
"vue-draggable-plus": "^0.6.0",
"vue-scrollto": "^2.20.0"
},
"overrides": {
"vite": "^8.0.0-beta.14"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.11.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/eslint-config-prettier": "^8.0.0",
"autoprefixer": "^10.4.21",
"cypress": "^14.5.3",
"cypress-failed-log": "2.10",
"cypress-file-upload": "^5.0.8",
"cypress-iframe": "^1.0.1",
"cypress-wait-until": "^2.0.1",
"dompurify": "^3.2.5",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.33.0",
"google-closure-compiler-java": "^20200719.0.0",
"husky": "^8.0.3",
"less": "^4.3.0",
"lint-staged": "^16.1.4",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.17",
"vite": "^8.0.0-beta.14",
"vite-plugin-static-copy": "^3.1.1"
},
"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"
]
}
}