-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.02 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.02 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
{
"name": "astro-basic-template",
"version": "1.11.0",
"license": "MIT",
"private": true,
"author": "uuki <uuki.dev@gmail.com>",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"clean": "rimraf dist",
"lint:es": "eslint --cache 'src/**/*.{astro,js,ts,json}'",
"lint:style": "stylelint 'src/**/*.scss'",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"setup:tests": "playwright install",
"setup:husky": "husky install && sed -i.bak '/husky/d' .gitignore && rm -f .gitignore.bak",
"plop": "npx plop component"
},
"dependencies": {
"astro": "5.16.16",
"svelte": "^5.25.12"
},
"devDependencies": {
"@astrojs/svelte": "7.1.0",
"@csstools/postcss-global-data": "3.0.0",
"@iconify/json": "^2.2.273",
"@rollup/plugin-yaml": "^4.1.2",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^22.13.14",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"@vitest/browser": "^4.0.18",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/ui": "^4.0.18",
"cross-env": "^10.1.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-svelte": "^3.14.0",
"globals": "^17.3.0",
"husky": "8.0.2",
"lint-staged": "13.0.3",
"postcss": "^8.5.3",
"postcss-custom-media": "^9.1.5",
"postcss-preset-env": "^7.8.3",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.7.2",
"sass": "^1.86.3",
"stylelint": "17.1.1",
"stylelint-browser-compat": "1.0.0-beta.180",
"stylelint-config-html": "1.1.0",
"stylelint-scss": "7.0.0",
"typescript": "5.3.3",
"typescript-eslint": "^8.54.0",
"unplugin-icons": "^0.20.1",
"vitest": "^4.0.0"
},
"peerDependencies": {
"typescript": "5.3.3"
}
}