-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
{
"name": "starter-app",
"version": "1.0.0",
"description": "Starter Vue app",
"author": {
"name": "Timur Badretdinov",
"url": "https://github.com/Destiner"
},
"keywords": [
"vue",
"starter"
],
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git://github.com/Destiner/starter-app.git"
},
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite",
"lint": "bun run lint:prettier && bun run lint:eslint && bun run lint:stylelint",
"lint:prettier": "prettier -c \"src/**/*.{json,js,ts,vue}\"",
"lint:eslint": "eslint \"src/**/*.{js,ts,vue}\"",
"lint:stylelint": "stylelint \"src/**/*.{css,vue}\"",
"typecheck": "tsc --noEmit && vue-tsc --noEmit"
},
"dependencies": {
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.5.13",
"eslint": "^9.19.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-vue": "^9.32.0",
"prettier": "^3.4.2",
"stylelint": "^16.14.1",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-recommended-vue": "^1.6.0",
"stylelint-config-standard": "^37.0.0",
"typescript": "5.6.3",
"typescript-eslint": "^8.22.0",
"vite": "^6.0.11",
"vite-plugin-vue-devtools": "^7.7.1",
"vite-tsconfig-paths": "^5.1.4",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.2.0"
}
}