-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
executable file
·128 lines (128 loc) · 4.16 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "gatsby-starter-iohk-docs",
"description": "IOHK's documentation Gatsby starter",
"version": "0.0.1",
"author": "Lewis Nelson <[email protected]>",
"dependencies": {
"@ctrl/tinycolor": "^2.6.1",
"@input-output-hk/front-end-core-components": "^1.0.9",
"@input-output-hk/front-end-core-libraries": "^1.2.0",
"@input-output-hk/front-end-site-components": "^1.2.12",
"@input-output-hk/front-end-themes": "^1.2.6",
"@material-ui/core": "^4.9.9",
"@material-ui/lab": "^4.0.0-alpha.51",
"@rhysforyou/gatsby-plugin-react-helmet-async": "^0.1.3",
"flexsearch": "^0.6.32",
"gatsby": "^2.20.15",
"gatsby-plugin-manifest": "^2.3.3",
"gatsby-plugin-material-ui": "^2.1.6",
"gatsby-plugin-offline": "^3.1.2",
"gatsby-plugin-styled-components": "^3.2.1",
"gatsby-source-filesystem": "^2.2.2",
"gatsby-transformer-remark": "2.7.1",
"moment": "^2.24.0",
"mongoose": "^5.12.13",
"objects-to-csv": "^1.3.6",
"prism-react-renderer": "^1.2.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^16.13.1",
"react-dom-confetti": "^0.2.0",
"react-ga": "^2.7.0",
"react-google-recaptcha": "^2.1.0",
"react-icons": "^3.10.0",
"react-syntax-highlighter": "^12.2.1",
"react-tooltip": "^4.2.21",
"react-transition-group": "^4.3.0",
"react-youtube": "^7.11.2",
"react-zendesk": "^0.1.9",
"showdown": "^1.9.1",
"styled-components": "^5.1.0",
"victory": "^34.3.11",
"whatwg-fetch": "^3.0.0"
},
"keywords": [
"gatsby",
"starter",
"iohk",
"docs"
],
"license": "MIT",
"scripts": {
"build": "npm run clean && gatsby build && npm run build:netlify-prod && npm run build:netlify-toml && npm run build:cp-redirects && cat netlify.toml",
"build:netlify": "./node_modules/.bin/webpack --config webpack.netlify.config.js",
"build:netlify-prod": "NODE_ENV=production ./node_modules/.bin/webpack --config webpack.netlify.config.js",
"build:netlify-toml": "node ./scripts/build-netlify-toml.js",
"build:cp-redirects": "cp _redirects public/",
"ci": "npm run lint && npm run build",
"clean": "gatsby clean",
"create-pages": "node ./scripts/create-pages.js",
"delete-pages": "node ./scripts/delete-pages.js",
"develop": "gatsby develop",
"lint": "eslint netlify/ node/ scripts/ src/ *.js",
"lint:changed": "eslint",
"postinstall": "./scripts/post-install.sh",
"start": "npm run develop",
"serve": "node ./scripts/serve",
"watch:netlify": "NODE_ENV=development npm run build:netlify -- --watch"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@hot-loader/react-dom": "^16.13.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.10.7",
"babel-preset-gatsby": "^0.3.1",
"crypto": "^1.0.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"express": "^4.17.1",
"front-matter": "^3.1.0",
"portfinder": "^1.0.25",
"toml": "^3.0.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"repository": {
"type": "git",
"url": "https://github.com/input-output-hk/gatsby-starter-iohk-docs"
},
"gatsby-starter-iohk-default": {
"availableLanguages": [
{
"key": "en",
"label": "English",
"flag": "🇺🇸",
"locale": "en_US"
}
],
"alternativeLanguages": [],
"themes": [
"cardano"
],
"ga": {
"trackingID": "UA-119953429-1"
},
"localization": {
"createLocalizedPages": true,
"ignore": [],
"createDefaultPages": true,
"useURL": true,
"useNavigator": true,
"persistLang": true
},
"routes": [],
"gitHubRepository": "cardano-foundation/testnets-cardano-org"
}
}