-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.48 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
{
"name": "rolg.in-folio",
"type": "module",
"packageManager": "[email protected]",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "rm -rf dist && yarn runtscheck && astro build",
"preview": "astro preview --open",
"runeslint": "eslint .",
"runtscheck": "tsc --noEmit & echo \"tsc run was successful\"",
"lint": "yarn runeslint && yarn astro check",
"killdev": "lsof -i :3000 | grep node | awk '{print $2}' | xargs kill -9",
"dev-watch": "yarn chokidar \"**/*.scss\" -c \"yarn killdev && yarn dev\"",
"astro": "astro"
},
"devDependencies": {
"@astrojs/sitemap": "^1.3.1",
"@fontsource/inter": "^4.5.15",
"@otterlord/astro-critters": "^1.1.41",
"@rtech-public/astro-fluid-design": "latest",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.2",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"astro": "^2.5.5",
"astro-emoji": "^1.2.0",
"astro-icon": "^0.8.0",
"astro-purgecss": "^2.0.1",
"astro-seo": "^0.7.2",
"autoprefixer": "^10.4.14",
"chokidar-cli": "^3.0.0",
"cssnano": "^6.0.1",
"eslint": "^8.40.0",
"eslint-plugin-astro": "^0.27.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"normalize.css": "^8.0.1",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.8.0",
"sass": "^1.62.1",
"svgo": "^2.8.0",
"typescript": "^5.0.4",
"vite": "^4.3.9"
}
}