-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.69 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
58
59
{
"name": "dulmage.me",
"version": "2.0.0",
"description": "Hello and welcome to my portfolio.",
"author": "Curtis Dulmage",
"license": "UNLICENSED",
"keywords": [
"dulmage",
"portfolio",
"development"
],
"homepage": "https://dulmage.me/",
"bugs": {
"url": "https://github.com/beefchimi/dulmage/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beefchimi/dulmage.git"
},
"type": "module",
"engines": {
"node": ">=22.6.0",
"npm": ">=10.8.0"
},
"scripts": {
"clean": "rm -rf dev-dist && rm -rf dist && rm -rf node_modules/.cache && rm -rf node_modules/.vite",
"nuke": "npm run clean && rm -rf node_modules && rm -rf package-lock.json && npm cache clean --force",
"astro": "astro",
"start": "astro dev",
"start:host": "astro dev --host",
"build": "npm run clean && astro check && astro build",
"preview": "astro preview",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"check": "astro check",
"test": "echo 'There is no testing suite set up for this app.'"
},
"dependencies": {
"@astrojs/check": "^0.9.3",
"@fontsource-variable/outfit": "^5.0.14",
"astro": "^4.14.5",
"astro-icon": "^1.1.1",
"beeftools": "^0.1.7",
"typescript": "^5.5.4"
},
"devDependencies": {
"@typescript-eslint/parser": "^8.2.0",
"@vite-pwa/astro": "^0.4.0",
"@vite-pwa/assets-generator": "^0.2.4",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^1.2.3",
"eslint-plugin-jsx-a11y": "^6.9.0",
"lightningcss": "^1.26.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1"
}
}