-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 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
41
42
{
"name": "marin-resume",
"type": "module",
"version": "1.0.0",
"license": "MIT",
"private": true,
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marincarroll/marincarroll.github.io"
},
"scripts": {
"start": "astro dev",
"build": "astro check && astro build && npm run prettier",
"preview": "astro preview",
"check": "astro check",
"prettier": "npx prettier . --write",
"eslint": "eslint \"src/**/*.{js,astro}\" --fix",
"stylelint": "npx stylelint \"**/*.astro\" --fix"
},
"dependencies": {
"@astrojs/alpinejs": "^0.4.9",
"@astrojs/check": "0.9.5",
"@types/alpinejs": "^3.13.11",
"alpinejs": "^3.15.2",
"astro": "5.16.0",
"astro-pdf": "^1.7.2",
"typescript": "5.9.3"
},
"devDependencies": {
"@typescript-eslint/parser": "^8.47.0",
"eslint": "^9.39.1",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"prettier-plugin-astro": "^0.14.1",
"stylelint": "^16.26.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^39.0.1"
}
}