@arcblock/blocklet-registry
Version:
**Blocklets** are reusable building blocks to help developers and community users to build things on [ArcBlock](https://www.arcblock.io) platform. A blocklet serves one and only one purpose, reusability is the core design philosophy of blocklets. Reusabil
85 lines (84 loc) • 2.49 kB
JSON
{
"name": "forge-xmark-starter",
"description": "dApp starter build with gatsby and xmark that can run on forge powered blockchain",
"scripts": {
"lint": "eslint api src",
"clean": "rm -rf public api/dist",
"serve": "gatsby serve",
"build:gatsby": "gatsby build",
"build:api": "netlify-lambda build api/functions",
"build": "npm run clean && npm-run-all build:*",
"start:gatsby": "gatsby develop --host 0.0.0.0",
"start:server": "nodemon api/index.js -w api"
},
"license": "Apache-2.0",
"lint-staged": {
"*.{js,jsx,mjs,ts,tsx,css,less,scss,json,graphql}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@arcblock/did": "^1.3.3",
"@arcblock/did-auth": "^1.3.4",
"@arcblock/did-auth-storage-mongo": "^1.2.7",
"@arcblock/did-react": "^0.78.1",
"@arcblock/react-hooks": "^0.78.0",
"@arcblock/forge-message": "^1.3.1",
"@arcblock/forge-sdk": "^1.3.4",
"@arcblock/forge-util": "^1.2.13",
"@arcblock/forge-wallet": "^1.3.3",
"@arcblock/gatsby-theme-www": "^7.25.0",
"@arcblock/graphql-client": "^1.3.4",
"@arcblock/mcrypto": "^1.2.13",
"@arcblock/ux": "^0.78.0",
"@material-ui/core": "^4.10.2",
"@material-ui/icons": "4.5.1",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"core-js": "2.5.7",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"express-bearer-token": "^2.4.0",
"gatsby": "^2.23.22",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"mongoose": "5.4.23",
"morgan": "^1.9.1",
"multibase": "^0.6.0",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-content-loader": "^5.0.2",
"react-dom": "^16.13.0",
"react-helmet": "^5.2.1",
"react-jss": "^10.0.4",
"react-use": "^13.26.3",
"serverless-http": "^2.0.1",
"store": "^2.0.12",
"styled-components": "^5.0.1"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.18.3",
"husky": "^2.2.0",
"lint-staged": "^8.1.6",
"netlify-lambda": "^1.4.7",
"nodemon": "^1.19.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "lint-staged"
}
}
}