-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.68 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.68 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "personal-website",
"private": true,
"version": "1.0.0",
"description": "Personal website built with Gatsby, React, Node.js",
"author": "Jonathan Gunawan",
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"build": "node ./scripts/generate-social-card.mjs && gatsby build --prefix-paths",
"deploy": "gh-pages -d public -b gh-pages -f",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint 'src/**/*.{js,jsx}' --max-warnings=0 || true",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run --coverage"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"gatsby": "^5.15.0",
"gatsby-plugin-image": "^3.15.0",
"gatsby-plugin-manifest": "^5.15.0",
"gatsby-plugin-react-helmet": "^6.15.0",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-sharp": "^5.15.0",
"gatsby-plugin-sitemap": "^6.15.0",
"gatsby-source-filesystem": "^5.15.0",
"gatsby-transformer-sharp": "^5.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^14.2.1",
"@types/jest": "^30.0.0",
"@types/node": "^20.11.30",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"@types/react-helmet": "^6.1.11",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"gatsby-plugin-postcss": "^6.15.0",
"gh-pages": "^6.3.0",
"jsdom": "^24.0.0",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"typescript": "^5.4.5",
"vitest": "^3.2.4"
}
}