-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 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
43
44
45
{
"name": "codehelp",
"private": true,
"description": "CodeHelp website",
"version": "1.0.0",
"author": "Tom Gooden @good3n",
"dependencies": {
"@astrojs/partytown": "^2.1.0",
"@astrojs/react": "^3.1.0",
"@astrojs/sitemap": "^3.1.0",
"@nanostores/react": "^0.7.0",
"astro": "^5.0.0",
"dotenv": "^16.3.1",
"nanostores": "^0.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.34.5"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0"
},
"keywords": [
"astro"
],
"license": "0BSD",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"clean": "rm -rf dist .astro"
},
"repository": {
"type": "git",
"url": "https://github.com/good3n/codehelp"
},
"bugs": {
"url": "https://github.com/good3n/codehelp/issues"
}
}