-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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
{
"name": "oystersjp.github.io",
"version": "0.0.1",
"type": "module",
"scripts": {
"add-member": "echo \"Error: no test specified\" && exit 1",
"build": "astro check && astro build",
"dev": "astro dev",
"fix:js": "eslint --fix",
"fix:css": "stylelint --fix",
"fix:format": "prettier --write",
"lint": "npm run lint:js -- . && npm run lint:css -- \"**/*.astro\" && npm run lint:format -- .",
"lint:js": "eslint",
"lint:css": "stylelint",
"lint:format": "prettier --check",
"prepare": "husky",
"preview": "astro preview",
"start": "astro dev",
"test:vrt": "playwright test -u && reg-cli .reg/actual .reg/expected .reg/diff -R .reg/index.html",
"type-check": "astro check"
},
"dependencies": {
"@astrojs/check": "^0.9.2",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.13.1",
"p5": "^1.10.0",
"tailwindcss": "^3.4.8",
"typescript": "^5.5.4"
},
"engines": {
"node": "20.16.0",
"npm": "10.8.1"
},
"devDependencies": {
"@playwright/test": "^1.45.3",
"@types/eslint": "^9.6.0",
"@types/p5": "^1.7.6",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^1.2.3",
"eslint-plugin-jsx-a11y": "^6.9.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"postcss-html": "^1.7.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.6",
"reg-cli": "^0.18.7",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended": "^14.0.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.21.1",
"sharp": "^0.33.5"
}
}