-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 2.08 KB
/
package.json
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
{
"name": "the-superawesome-frontend-boilerplate",
"type": "module",
"version": "1.0.0",
"description": "Description",
"author": "Alex ",
"license": "MIT",
"repository": "https://github.com/the-illarionov/the-superawesome-frontend-boilerplate",
"scripts": {
"dev": "vite --port=80 --host",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview --port=8000 --host",
"test:unit": "vitest run",
"test:unit:ui": "vitest --api.host 0.0.0.0 --api.port 8100 --ui",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"build-only": "vite-ssg build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . && stylelint '**/*.{vue,css}' --quiet-deprecation-warnings",
"lint:fix": "eslint . --fix && stylelint '**/*.{vue,css}' --fix --quiet-deprecation-warnings"
},
"dependencies": {
"vue": "^3.5.13",
"vue-router": "^4.4.5",
"xstate": "^5.19.2"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.0",
"@kalimahapps/eslint-plugin-tailwind": "^1.1.0",
"@playwright/test": "^1.50.1",
"@statelyai/inspect": "^0.4.0",
"@stylistic/stylelint-config": "^2.0.0",
"@stylistic/stylelint-plugin": "^3.1.1",
"@tsconfig/node22": "^22.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.13.0",
"@unhead/vue": "^1.11.18",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/eslint-plugin": "^1.1.25",
"@vitest/ui": "^3.0.4",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"@xstate/test": "^1.0.0-beta.5",
"autoprefixer": "^10.4.20",
"beasties": "^0.2.0",
"eslint": "^9.19.0",
"jsdom": "^26.0.0",
"npm-run-all2": "^7.0.2",
"postcss-html": "^1.8.0",
"stylelint": "^16.14.1",
"stylelint-config-clean-order": "^7.0.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vite-plugin-vue-devtools": "^7.7.1",
"vite-ssg": "^25.0.0",
"vitest": "^3.0.4",
"vue": "^3.5.13",
"vue-tsc": "^2.1.10"
}
}