2020-01-31 20:18:58 +00:00
|
|
|
{
|
2020-02-18 16:25:03 +00:00
|
|
|
"name": "skynet-webportal",
|
2020-02-20 16:35:07 +00:00
|
|
|
"description": "Sia Skynet",
|
2020-02-18 16:25:03 +00:00
|
|
|
"version": "1.0.0",
|
2020-02-20 16:35:07 +00:00
|
|
|
"author": "Nebulous",
|
2020-02-18 16:25:03 +00:00
|
|
|
"dependencies": {
|
|
|
|
"classnames": "^2.2.6",
|
2020-02-28 10:46:36 +00:00
|
|
|
"gatsby": "^2.19.22",
|
2020-02-21 10:43:35 +00:00
|
|
|
"gatsby-image": "^2.2.41",
|
2020-02-25 10:39:16 +00:00
|
|
|
"gatsby-plugin-manifest": "^2.2.42",
|
2020-02-21 10:48:03 +00:00
|
|
|
"gatsby-plugin-react-helmet": "^3.1.22",
|
2020-02-27 10:58:53 +00:00
|
|
|
"gatsby-plugin-remove-serviceworker": "^1.0.0",
|
2020-02-20 17:14:20 +00:00
|
|
|
"gatsby-plugin-robots-txt": "^1.5.0",
|
2020-02-21 11:00:43 +00:00
|
|
|
"gatsby-plugin-sass": "^2.1.29",
|
2020-02-21 10:56:07 +00:00
|
|
|
"gatsby-plugin-sharp": "^2.4.5",
|
2020-02-21 10:49:33 +00:00
|
|
|
"gatsby-source-filesystem": "^2.1.48",
|
2020-02-28 10:46:36 +00:00
|
|
|
"gatsby-transformer-sharp": "^2.3.16",
|
2020-02-18 16:25:03 +00:00
|
|
|
"jsonp": "^0.2.1",
|
|
|
|
"node-sass": "^4.13.1",
|
|
|
|
"prop-types": "^15.7.2",
|
2020-02-28 10:46:36 +00:00
|
|
|
"react": "^16.13.0",
|
2020-02-18 16:25:03 +00:00
|
|
|
"react-countup": "^4.3.3",
|
2020-02-28 10:46:36 +00:00
|
|
|
"react-dom": "^16.13.0",
|
2020-02-18 16:25:03 +00:00
|
|
|
"react-dropzone": "^10.2.1",
|
2020-02-20 16:35:07 +00:00
|
|
|
"react-helmet": "^5.2.1",
|
2020-02-18 16:25:03 +00:00
|
|
|
"react-mailchimp-form": "^1.0.2",
|
|
|
|
"react-mailchimp-subscribe": "^2.1.0",
|
|
|
|
"react-reveal": "^1.2.2",
|
|
|
|
"react-syntax-highlighter": "^12.2.1",
|
|
|
|
"react-visibility-sensor": "^5.1.1",
|
|
|
|
"shortid": "^2.2.15"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-02-28 11:09:30 +00:00
|
|
|
"eslint": "^6.8.0",
|
|
|
|
"eslint-config-prettier": "^6.10.0",
|
|
|
|
"eslint-plugin-react": "^7.18.3",
|
2020-02-24 14:55:53 +00:00
|
|
|
"husky": "^4.2.3",
|
2020-02-26 10:44:09 +00:00
|
|
|
"lint-staged": "^10.0.8",
|
2020-02-18 16:25:03 +00:00
|
|
|
"prettier": "^1.19.1"
|
|
|
|
},
|
2020-02-20 16:35:07 +00:00
|
|
|
"keywords": [
|
2020-02-20 17:14:20 +00:00
|
|
|
"sia",
|
|
|
|
"skynet",
|
2020-02-20 16:35:07 +00:00
|
|
|
"nebulous",
|
|
|
|
"blockchain",
|
|
|
|
"decentralized",
|
|
|
|
"cloud storage"
|
|
|
|
],
|
|
|
|
"license": "MIT",
|
2020-01-31 20:18:58 +00:00
|
|
|
"scripts": {
|
2020-02-20 16:35:07 +00:00
|
|
|
"build": "gatsby build",
|
2020-02-24 14:58:14 +00:00
|
|
|
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,html,css,scss}\"",
|
2020-02-28 10:05:57 +00:00
|
|
|
"start": "gatsby develop",
|
2020-02-20 16:35:07 +00:00
|
|
|
"serve": "gatsby serve",
|
|
|
|
"clean": "gatsby clean"
|
2020-01-31 20:18:58 +00:00
|
|
|
},
|
2020-02-24 14:55:53 +00:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
2020-02-24 14:58:14 +00:00
|
|
|
"*.{js,jsx,ts,tsx,md,html,css,scss}": "prettier --write"
|
2020-02-24 14:55:53 +00:00
|
|
|
},
|
2020-02-20 16:35:07 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/NebulousLabs/skynet-webportal"
|
2020-01-31 20:18:58 +00:00
|
|
|
},
|
2020-02-20 16:35:07 +00:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/NebulousLabs/skynet-webportal/issues"
|
2020-01-31 20:18:58 +00:00
|
|
|
}
|
|
|
|
}
|