-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.62 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "portfolio-gatsby",
"private": true,
"description": "My personal website - built with Gatsby.js",
"version": "1.0.0",
"author": "Naimur Rahman <[email protected]>",
"dependencies": {
"@mdx-js/mdx": "^1.5.1",
"@mdx-js/react": "^1.5.1",
"babel-plugin-styled-components": "^1.10.6",
"fontsource-roboto": "^3.0.3",
"framer-motion": "^1.10.2",
"gatsby": "^2.25.3",
"gatsby-image": "^2.2.36",
"gatsby-plugin-gdpr-cookies": "^1.0.14",
"gatsby-plugin-manifest": "^2.3.2",
"gatsby-plugin-mdx": "^1.0.62",
"gatsby-plugin-netlify": "^2.1.30",
"gatsby-plugin-offline": "^3.0.24",
"gatsby-plugin-react-helmet": "^3.1.16",
"gatsby-plugin-robots-txt": "^1.5.3",
"gatsby-plugin-sharp": "^2.7.1",
"gatsby-plugin-sitemap": "^2.2.24",
"gatsby-plugin-styled-components": "^3.1.14",
"gatsby-remark-images": "^3.1.38",
"gatsby-source-filesystem": "^2.1.39",
"gatsby-transformer-sharp": "^2.4.2",
"intersection-observer": "^0.11.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-cookie-consent": "^6.2.3",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-visibility-sensor": "^5.1.1",
"smooth-scroll": "^16.1.0",
"styled-components": "^5.1.0",
"styled-modern-normalize": "^0.2.0",
"tiny-skeleton-loader-react": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/eslint-plugin": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-mdx": "^1.8.2",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"gatsby-plugin-eslint": "^2.0.8",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^1.19.1",
"start-server-and-test": "^1.12.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop --port 9000",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|graphql|md|mdx)\"",
"lint": "eslint .",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/nsourov/gatsby-portfolio"
},
"bugs": {
"url": "https://github.com/nsourov/gatsby-portfolio/issues"
}
}