This repository has been archived by the owner on May 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·112 lines (112 loc) · 3.51 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
{
"name": "haskell-foundation",
"description": "Haskell Foundation",
"version": "0.1.4",
"author": "Tomas Vrana <[email protected]>",
"dependencies": {
"@hot-loader/react-dom": "^16.13.0",
"@input-output-hk/front-end-core-components": "^1.0.6",
"@input-output-hk/front-end-core-libraries": "^1.2.0",
"@input-output-hk/front-end-site-components": "^1.2.0",
"@input-output-hk/front-end-themes": "^1.2.6",
"@material-ui/core": "^4.9.9",
"@rhysforyou/gatsby-plugin-react-helmet-async": "^0.1.3",
"gatsby": "^2.24.73",
"gatsby-image": "^2.4.21",
"gatsby-plugin-manifest": "^2.3.3",
"gatsby-plugin-material-ui": "^2.1.6",
"gatsby-plugin-offline": "^3.1.2",
"gatsby-plugin-sharp": "^2.6.43",
"gatsby-plugin-styled-components": "^3.2.1",
"gatsby-source-filesystem": "^2.2.2",
"gatsby-transformer-remark": "2.7.1",
"gatsby-transformer-sharp": "^2.5.20",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-ga": "^2.7.0",
"styled-components": "^5.1.0",
"whatwg-fetch": "^3.0.0"
},
"keywords": [
"gatsby",
"starter",
"iohk",
"default"
],
"license": "MIT",
"scripts": {
"build": "npm run clean && gatsby build && npm run build:netlify-prod && npm run build:netlify-toml",
"build:netlify": "webpack --config webpack.netlify.config.js",
"build:netlify-prod": "NODE_ENV=production webpack --config webpack.netlify.config.js",
"build:netlify-toml": "node ./scripts/build-netlify-toml.js",
"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",
"preload-fonts": "gatsby-preload-fonts"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@material-ui/icons": "^4.9.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.10.7",
"babel-preset-gatsby": "^0.3.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",
"gatsby-plugin-preload-fonts": "^1.2.29",
"gatsby-plugin-your-fonts": "^0.0.1",
"portfinder": "^1.0.25",
"react-icons": "^3.11.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"repository": {
"type": "git",
"url": "https://github.com/input-output-hk/haskell-foundation"
},
"haskell-foundation": {
"availableLanguages": [
{
"key": "en",
"label": "English",
"flag": "🇺🇸",
"locale": "en_US"
}
],
"alternativeLanguages": [],
"themes": [
"cardano"
],
"ga": {
"trackingID": null
},
"localization": {
"createLocalizedPages": true,
"ignore": [],
"createDefaultPages": true,
"useURL": true,
"useNavigator": true,
"persistLang": true
},
"routes": []
}
}