-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.09 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
{
"name": "wavebrook",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint . --ext .js,.ts,.astro",
"lint:fix": "eslint . --ext .js,.ts,.astro --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "npm run lint && npm run format:check",
"fix": "npm run lint:fix && npm run format"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.8",
"astro": "^5.8.0",
"sharp": "^0.34.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"autoprefixer": "^10.4.21",
"axios": "^1.4.0",
"eslint": "^9.27.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"execp": "^0.0.1",
"fs": "^0.0.1-security",
"path": "^0.12.7",
"postcss": "^8.5.4",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"request": "^2.88.2",
"tailwindcss": "^4.1.8"
}
}