-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.8 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.8 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
{
"name": "learn",
"version": "2.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">= 18"
},
"dependencies": {
"@userfrosting/theme-pink-cupcake": "^6.0.0-beta",
"axios": "^1.12.0",
"highlight.js": "^11.11.1",
"highlightjs-copy": "^1.0.6",
"vue": "^3.3.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": "^5.0.4",
"@vitest/coverage-v8": "^3.1.1",
"@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.9.0",
"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": "^6.3.6",
"vite-plugin-vue-devtools": "^7.5.4",
"vitest": "^3.1.1",
"vue-loader": "^17.2.2",
"vue-tsc": "^2.1.10",
"webpack-dev-server": "^5.2.2",
"webpack-notifier": "^1.15.0"
},
"scripts": {
"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/"
}
}