-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
85 lines (85 loc) · 2.44 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": "yordevs-site",
"private": true,
"description": "The website for Yordevs, the University of York's Web Development Society.",
"version": "0.1.0",
"author": "Yordevs",
"dependencies": {
"@fontsource/ibm-plex-mono": "^4.3.0",
"@fontsource/poppins": "^4.3.0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"acorn": "^7.4.0",
"axios": "^0.21.1",
"babel-plugin-styled-components": "^1.12.0",
"gatsby": "^3.5.1",
"gatsby-plugin-catch-links": "^3.5.0",
"gatsby-plugin-image": "^1.5.0",
"gatsby-plugin-manifest": "^3.5.0",
"gatsby-plugin-mdx": "^2.6.0",
"gatsby-plugin-offline": "^4.5.1",
"gatsby-plugin-react-helmet": "^4.5.0",
"gatsby-plugin-sass": "^4.5.0",
"gatsby-plugin-sharp": "^3.5.0",
"gatsby-plugin-styled-components": "^4.5.0",
"gatsby-remark-code-titles": "^1.1.0",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-prismjs": "^5.2.1",
"gatsby-source-filesystem": "^3.5.0",
"gatsby-transformer-json": "^3.5.0",
"gatsby-transformer-remark": "^4.2.0",
"gatsby-transformer-sharp": "^3.5.0",
"prismjs": "^1.23.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.6.5",
"react-icons": "^4.2.0",
"react-typical": "^0.1.3",
"react-useportal": "^1.0.14",
"sass": "^1.34.0",
"sharp": "^0.28.2",
"styled-components": "^5.3.0",
"three": "0.128.0",
"use-persisted-state": "^0.3.3",
"vanta": "^0.5.21"
},
"devDependencies": {
"eslint": "^7.27.0",
"eslint-plugin-react": "^7.22.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0"
},
"keywords": [
"gatsby"
],
"license": "0BSD",
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
},
"lint-staged": {
"*.{js,jsx}": "eslint"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "yarn run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"lint": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/yordevs/yordevs.github.io"
},
"bugs": {
"url": "https://github.com/yordevs/yordevs.github.io/issues"
}
}