-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.02 KB
/
package.json
File metadata and controls
64 lines (64 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
{
"name": "tubone24-astro",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev --host",
"start": "astro dev --host",
"build": "astro build",
"encrypt": "pagecrypt dist/index.html dist/index.html $PASSWORD",
"serve": "serve dist",
"preview": "astro preview",
"astro": "astro",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .js,.ts,.astro",
"lint:fix": "eslint . --ext .js,.ts,.astro --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"ci": "npm run lint && npm run format:check && npm run typecheck && npm run test:run && npm run build"
},
"dependencies": {
"@astrojs/partytown": "2.1.4",
"@iconify-json/fa": "1.2.2",
"@iconify-json/fluent": "1.2.34",
"@iconify-json/ic": "1.2.4",
"@iconify-json/icomoon-free": "1.2.1",
"@iconify-json/mdi": "1.2.3",
"accessible-astro-components": "5.0.3",
"astro": "5.16.11",
"astro-icon": "1.1.5",
"astro-webmanifest": "1.0.0",
"astrojs-service-worker": "2.0.0"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/test": "^8.4.7",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@vitest/ui": "^4.0.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"jsdom": "^25.0.1",
"pagecrypt": "7.0.2",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"serve": "14.2.5",
"storybook": "^8.4.7",
"typescript": "^5.7.2",
"vitest": "^4.0.0"
}
}