-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
107 lines (107 loc) · 3.49 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "tph-website",
"version": "0.1.0",
"private": true,
"description": "The official website for The Programmers Hangout",
"keywords": [
"gatsby",
"TPH",
"The Programmers Hangout"
],
"bugs": {
"url": "https://github.com/the-programmers-hangout/website/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/the-programmers-hangout/website"
},
"license": "MIT",
"author": "TPH",
"scripts": {
"build": "gatsby build",
"codegen": "graphql-codegen --config codegen.yml",
"develop": "gatsby develop",
"fetch-users": "node ./scripts/fetchUsers.js",
"format": "prettier --write src/{**,**/**}/*.{js,ts,tsx,md}",
"lint": "eslint '{src,scripts}/**/*.{js,ts,tsx}'",
"lint:fix": "yarn run lint -- --fix",
"serve": "gatsby serve",
"start": "yarn run develop",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"dependencies": {
"@el7cosmos/gatsby-plugin-prefetch-google-fonts": "^2.0.3",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@reach/router": "^1.3.4",
"classnames": "^2.3.1",
"gatsby": "^3.14.1",
"gatsby-plugin-layout": "^2.14.0",
"gatsby-plugin-manifest": "^3.14.0",
"gatsby-plugin-mdx": "^2.14.0",
"gatsby-plugin-polished": "^1.0.4",
"gatsby-plugin-postcss": "^4.14.0",
"gatsby-plugin-react-helmet": "^4.14.0",
"gatsby-plugin-react-svg": "^3.0.1",
"gatsby-plugin-sharp": "^3.14.0",
"gatsby-plugin-styled-components": "^4.14.0",
"gatsby-remark-auto-headers-improved": "^1.0.4",
"gatsby-source-filesystem": "^3.14.0",
"gatsby-transformer-sharp": "^3.14.0",
"github-slugger": "^1.4.0",
"graphql": "^15.6.0",
"graphql-tag": "^2.12.5",
"lodash": "^4.17.21",
"polished": "^4.1.3",
"postcss": "^8.3.8",
"prismjs": "^1.25.0",
"ramda": "^0.27.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-highlight": "^0.14.0",
"react-is": "^17.0.2",
"react-particles-js": "^3.5.3",
"react-perfect-scrollbar": "^1.5.8",
"react-scrollspy": "^3.4.3",
"react-use": "^17.3.1",
"styled-components": "^5.3.1",
"tsparticles": "^1.35.2",
"typescript": "^4.4.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.21.5",
"@graphql-codegen/typescript": "1.22.1",
"@graphql-codegen/typescript-operations": "1.18.0",
"@graphql-codegen/typescript-react-apollo": "2.2.5",
"@types/classnames": "^2.3.0",
"@types/lodash": "^4.14.170",
"@types/prismjs": "^1.16.5",
"@types/ramda": "^0.27.40",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"@types/react-helmet": "^6.1.1",
"@types/react-scrollspy": "^3.3.3",
"@types/styled-components": "^5.1.9",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.26.0",
"@typescript-eslint/parser": "^4.32.0",
"babel-plugin-polished": "^1.1.0",
"babel-plugin-styled-components": "^1.13.2",
"discord.js": "^13.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^36.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"gatsby-plugin-remove-trailing-slashes": "^3.14.0",
"prettier": "^2.4.1",
"svg-react-loader": "^0.4.6",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
}
}