-
-
Notifications
You must be signed in to change notification settings - Fork 363
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.3 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
{
"name": "userfrosting",
"version": "6.0.1",
"private": true,
"type": "module",
"engines": {
"node": ">= 20"
},
"dependencies": {
"@userfrosting/sprinkle-account": "^6.0.0-beta",
"@userfrosting/sprinkle-admin": "^6.0.0-beta",
"@userfrosting/sprinkle-core": "^6.0.0-beta",
"@userfrosting/theme-pink-cupcake": "^6.0.0-beta",
"axios": "^1.16.0",
"pinia": "^2.1.6",
"pinia-plugin-persistedstate": "^3.2.0",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@modyfi/vite-plugin-yaml": "^1.1.1",
"@symfony/webpack-encore": "^6.0.0",
"@tsconfig/node20": "^20.1.4",
"@types/luxon": "^3.4.2",
"@types/node": "^20.12.5",
"@types/uikit": "^3.14.5",
"@vitejs/plugin-vue": "^6.0.7",
"@vitest/coverage-v8": "^4.1.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"eslint": "^9.35.0",
"eslint-plugin-vue": "^10.4.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"happy-dom": "^20.8.9",
"jiti": "^2.5.1",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"npm-run-all2": "^6.1.2",
"prettier": "^3.6.2",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"typescript-eslint": "^8.42.0",
"vite": "^8.0.16",
"vite-plugin-vue-devtools": "^8.1.2",
"vitest": "^4.1.0",
"vue-loader": "^17.2.2",
"vue-tsc": "^2.1.10",
"webpack-dev-server": "^5.2.2",
"webpack-notifier": "^1.15.0"
},
"scripts": {
"webpack:server": "encore dev-server --port 9000",
"webpack:dev": "encore dev",
"webpack:watch": "encore dev --watch",
"webpack:build": "encore production --progress",
"vite:dev": "vite",
"vite:build": "vue-tsc && vite build",
"test": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint app/assets/ --fix",
"format": "prettier --write app/assets/",
"format-dry-run": "prettier --check app/assets/"
},
"overrides": {
"@modyfi/vite-plugin-yaml": {
"js-yaml": "4.1.1"
}
}
}