-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "ciffelia.com",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"typecheck": "astro check && tsc --noEmit",
"lint": "stylelint 'src/**/*.{css,astro}' && prettier --check .",
"format": "stylelint --fix 'src/**/*.{css,astro}' && prettier --write ."
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@fontsource/quicksand": "^5.1.0",
"@iconify-json/fa6-regular": "^1.2.1",
"@iconify-json/fa6-solid": "^1.2.1",
"astro": "^4.16.6",
"astro-icon": "^1.1.1",
"modern-normalize": "^3.0.1",
"postcss-preset-env": "^10.0.7",
"sharp": "^0.33.5",
"typescript": "^5.6.3"
},
"devDependencies": {
"postcss-html": "^1.7.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"stylelint": "^16.10.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-config-standard": "^36.0.1"
}
}