-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "saurabh-totey-portfolio-website",
"version": "0.0.0",
"description": "A website about Saurabh Totey.",
"main": "index.js",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
"deploy": "npm run build && gh-pages -d public",
"lint": "npx prettier . --write; npx eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SaurabhTotey/Portfolio-Website.git"
},
"author": "Saurabh Totey",
"bugs": {
"url": "https://github.com/SaurabhTotey/Portfolio-Website/issues"
},
"homepage": "https://github.com/SaurabhTotey/Portfolio-Website#readme",
"dependencies": {
"gatsby": "^5.13",
"gatsby-plugin-image": "^3.13",
"gatsby-plugin-sharp": "^5.13",
"gatsby-source-filesystem": "^5.13",
"gatsby-transformer-sharp": "^5.13",
"prop-types": "^15.8",
"react": "^18.2",
"react-dom": "^18.2",
"react-icons": "^4.12"
},
"devDependencies": {
"eslint": "^8.56",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0",
"eslint-plugin-react": "^7.33",
"prettier": "^3.1",
"gh-pages": "^6.1"
}
}