-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "math-gen",
"version": "1.0.0",
"description": "Elementary School Math Generator",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"type-check": "vue-tsc --noEmit",
"lint": "eslint .",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@rushstack/eslint-patch": "^1.16.1",
"@tailwindcss/postcss": "^4.0.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/coverage-v8": "^4.0.17",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.22",
"eslint": "^9.39.2",
"eslint-plugin-vue": "^10.6.2",
"globals": "^17.0.0",
"jsdom": "^27.4.0",
"postcss": "^8.5.6",
"prettier": "^3.8.3",
"tailwindcss": "^4.0.0",
"typescript": "^5.9.3",
"vite": "^7.2.2",
"vitest": "^4.0.17",
"vue": "^3.5.24",
"vue-tsc": "^3.2.2"
},
"dependencies": {
"canvas-confetti": "^1.9.4",
"vue-i18n": "^11.1.12"
}
}