-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 899 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 899 Bytes
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
{
"name": "flashcards",
"private": true,
"version": "0.1.0",
"type": "module",
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
},
"scripts": {
"dev": "vite -m development build",
"build": "vite -m production build",
"watch": "vite -m development -w build",
"fmt": "prettier --write .",
"lint": "npx eslint --fix 'src/**/*.{js,vue}'"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/vue": "^9.6.0",
"ts-fsrs": "^5.3.2",
"vue": "^3.5.32"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/vite-config": "^2.5.2",
"@prettier/plugin-php": "^0.25.0",
"@vitejs/plugin-vue": "^6.0.5",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.8.0",
"prettier": "^3.8.2",
"vite": "^7.3.1"
}
}