This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/packages/webapp/package.json

83 lines
2.0 KiB
JSON
Raw Normal View History

2020-07-30 12:23:49 +00:00
{
"name": "webapp",
"description": "Sia Skynet",
"version": "1.0.0",
"author": "Nebulous",
"dependencies": {
2021-02-19 09:46:36 +00:00
"@fontsource/metropolis": "^4.2.1",
2021-01-23 16:23:56 +00:00
"axios": "0.21.1",
2020-09-03 17:19:40 +00:00
"bytes": "3.1.0",
"classnames": "2.2.6",
2021-03-11 11:08:16 +00:00
"gatsby": "^3.0.4",
2021-03-02 14:36:50 +00:00
"gatsby-plugin-manifest": "^3.0.0",
"gatsby-plugin-matomo": "0.9.0",
2021-03-02 14:36:50 +00:00
"gatsby-plugin-react-helmet": "^4.0.0",
2020-09-03 17:19:40 +00:00
"gatsby-plugin-remove-serviceworker": "1.0.0",
2021-01-23 16:23:56 +00:00
"gatsby-plugin-robots-txt": "1.5.5",
2021-03-11 11:08:16 +00:00
"gatsby-plugin-sass": "^4.0.2",
2021-03-02 14:36:50 +00:00
"gatsby-source-filesystem": "^3.0.0",
"http-status-codes": "2.1.4",
2020-09-03 17:19:40 +00:00
"jsonp": "0.2.1",
2021-01-23 16:23:56 +00:00
"node-sass": "5.0.0",
2020-09-03 17:19:40 +00:00
"path-browserify": "1.0.1",
"prop-types": "15.7.2",
2021-01-23 16:23:56 +00:00
"react": "17.0.1",
2020-09-03 17:19:40 +00:00
"react-countup": "4.3.3",
2021-01-23 16:23:56 +00:00
"react-dom": "17.0.1",
"react-dropzone": "11.3.1",
2020-09-03 17:19:40 +00:00
"react-helmet": "6.1.0",
"react-mailchimp-form": "1.0.2",
2021-03-11 11:08:16 +00:00
"react-mailchimp-subscribe": "^2.1.3",
"react-syntax-highlighter": "15.4.3",
2020-09-03 17:19:40 +00:00
"react-visibility-sensor": "5.1.1",
2021-01-26 15:47:49 +00:00
"skynet-js": "3.0.0"
2020-07-30 12:23:49 +00:00
},
"devDependencies": {
2021-03-02 14:36:50 +00:00
"cypress": "^6.6.0",
2021-01-23 16:23:56 +00:00
"cypress-file-upload": "5.0.2",
"eslint": "7.21.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "2.11.2",
2021-01-23 16:23:56 +00:00
"eslint-plugin-react": "7.22.0",
"husky": "4.3.8",
"lint-staged": "10.5.4",
2021-01-23 16:23:56 +00:00
"prettier": "2.2.1"
2020-07-30 12:23:49 +00:00
},
"keywords": [
"sia",
"skynet",
"nebulous",
"blockchain",
"decentralized",
"cloud storage"
],
2021-03-15 11:53:57 +00:00
"license": "SEE LICENSE IN LICENSE.md",
2020-07-30 12:23:49 +00:00
"scripts": {
"build": "gatsby build",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{md,html,css,scss}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/NebulousLabs/skynet-webportal"
},
"bugs": {
"url": "https://github.com/NebulousLabs/skynet-webportal/issues"
}
}