-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
82 lines (82 loc) · 2.58 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
{
"name": "goproxy.io",
"private": true,
"description": "goproxy.io website source code",
"version": "0.1.0",
"author": "Alex Chao",
"dependencies": {
"acorn": "^8.6.0",
"axios": "^0.24.0",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.13.3",
"classnames": "^2.3.1",
"clipboard": "^2.0.8",
"gatsby": "^3.14.6",
"gatsby-image": "^2.11.0",
"gatsby-plugin-copy-files": "^1.1.0",
"gatsby-plugin-lodash": "^4.14.0",
"gatsby-plugin-manifest": "^3.14.0",
"gatsby-plugin-offline": "^4.14.0",
"gatsby-plugin-react-helmet": "^4.14.0",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-sharp": "^3.15.0",
"gatsby-plugin-sitemap": "^3.3.0",
"gatsby-plugin-styled-components": "^4.14.0",
"gatsby-plugin-typescript": "^3.14.0",
"gatsby-remark-autolink-headers": "^3.2.0",
"gatsby-remark-copy-linked-files": "^3.2.0",
"gatsby-remark-images": "^5.0.0",
"gatsby-remark-prismjs": "^4.2.0",
"gatsby-remark-responsive-iframe": "^4.11.0",
"gatsby-source-filesystem": "^3.14.0",
"gatsby-transformer-remark": "^4.11.0",
"gatsby-transformer-sharp": "^3.15.0",
"lodash": "^4.17.21",
"micell": "^0.13.3",
"moment": "^2.29.1",
"normalize.css": "^8.0.1",
"prismjs": "^1.25.0",
"prop-types": "^15.7.2",
"qrcode.react": "^3.1.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^5.2.1",
"react-responsive": "^8.2.0",
"rehype-react": "^7.0.3",
"styled-components": "^5.3.3",
"url-join": "^4.0.1"
},
"devDependencies": {
"@babel/helper-compilation-targets": "^7.16.3",
"@types/classnames": "^2.3.1",
"@types/lodash": "^4.14.177",
"@types/node": "^13.13.52",
"@types/react": "^16.14.21",
"@types/react-dom": "^16.9.14",
"@types/react-helmet": "^5.0.19",
"@types/react-responsive": "^8.0.4",
"@types/styled-components": "^5.0.19",
"prettier": "^1.19.1",
"typescript": "^3.9.10"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "gatsby build --prefix-paths",
"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",
"postinstall": "rm -rf node_modules/@types/react-native"
},
"repository": {
"type": "git",
"url": "[email protected]:goproxyio/goproxy.io.git"
}
}