-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 954 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 954 Bytes
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
{
"name": "pyrospower",
"type": "module",
"version": "0.0.1",
"scripts": {
"check": "astro check",
"dev": "astro dev",
"clean": "rm -rf node_modules dist",
"format": "prettier '**/*.{cjs,mjs,ts,md,mdx,json,astro}' --ignore-path ./.gitignore --ignore-unknown --write",
"format:check": "prettier '**/*.{cjs,mjs,ts,md,mdx,json,astro}' --ignore-path ./.gitignore --ignore-unknown --check",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@iconify-json/simple-icons": "^1.2.58",
"@tailwindcss/vite": "^4.1.17",
"astro": "^5.15.8",
"astro-icon": "^1.1.5",
"tailwindcss": "^4.1.17"
},
"devDependencies": {
"@astrojs/check": "^0.9.5",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.1",
"typescript": "^5.9.3"
}
}