-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
92 lines (92 loc) · 2.81 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
86
87
88
89
90
91
92
{
"name": "github-profilinator",
"private": true,
"description": "Awesome GitHub readme profile generator",
"version": "0.1.0",
"author": "Rishav Anand <[email protected]>",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.14.0",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"antd": "^4.22.8",
"emoji-mart": "^3.0.0",
"gatsby": "^2.24.15",
"gatsby-image": "^2.4.14",
"gatsby-plugin-antd": "^2.2.0",
"gatsby-plugin-google-analytics": "^2.3.13",
"gatsby-plugin-less": "^5.0.0",
"gatsby-plugin-manifest": "^2.4.21",
"gatsby-plugin-offline": "^3.2.21",
"gatsby-plugin-react-helmet": "^5.20.0",
"gatsby-plugin-sass": "^2.3.12",
"gatsby-plugin-sharp": "^2.6.24",
"gatsby-plugin-smoothscroll": "^1.2.0",
"gatsby-plugin-use-dark-mode": "^1.1.2",
"gatsby-transformer-sharp": "^2.5.12",
"marked": "^2.0.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-scroll": "^1.8.0",
"styled-components": "^5.1.1",
"use-dark-mode": "^2.3.1",
"uuid": "^8.3.0"
},
"devDependencies": {
"@babel/runtime": "^7.18.6",
"@types/antd": "^1.0.0",
"@types/emoji-mart": "^3.0.2",
"@types/marked": "^1.1.0",
"@types/react-copy-to-clipboard": "^5.0.3",
"@types/react-helmet": "^6.1.5",
"@types/react-scroll": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"babel-runtime": "^6.26.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"gatsby-plugin-catch-links": "^2.3.11",
"gatsby-source-filesystem": "^2.3.23",
"gatsby-transformer-remark": "^2.8.27",
"husky": "^4.2.5",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"react-refresh": "^0.8.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"keywords": [
"github",
"profile",
"readme",
"generator",
"react",
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"info": "echo \"Node version: $(node -v)\" && echo \"NPM version: $(npm -v)\""
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "https://github.com/rishavanand/rishav.dev"
}
}