-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
{
"name": "portfolio",
"version": "0.3.1",
"description": "My portfolio as a full-stack developer passionate about learning and building solutions that make a difference in people's lives",
"main": "index.js",
"homepage": "https://www.edsonpimenta.net/",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"check": "astro check",
"build": "astro check && astro build",
"preview": "astro preview",
"lint": "eslint --ext .js,.ts,.astro src",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"keywords": [
"portfolio",
"astro",
"typescript",
"ssr"
],
"author": {
"name": "Edson Pimenta",
"email": "[email protected]",
"url": "https://www.edsonpimenta.net/"
},
"license": "MIT",
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/ts-plugin": "^1.10.4",
"astro": "^5.1.1",
"astro-icon": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@types/node": "^20.14.6",
"@typescript-eslint/parser": "^7.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^0.31.4",
"eslint-plugin-jsx-a11y": "^6.8.0",
"husky": "^9.0.11",
"sharp": "^0.33.5",
"typescript": "^5.4.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}