Skip to content

Commit

Permalink
scaffold-eth#21 install eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
shravansunderxero committed Oct 25, 2021
1 parent 4b0d3f0 commit e5b946e
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 65 deletions.
132 changes: 67 additions & 65 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,67 +1,69 @@
{
"name": "@scaffold-eth/typescript",
"version": "0.1.0-beta02",
"keywords": [
"ethereum",
"react",
"uniswap",
"workspaces",
"yarn"
],
"private": true,
"scripts": {
"build": "yarn workspace @scaffold-eth/vite-app build",
"serve": "yarn workspace @scaffold-eth/vite-app serve",
"chain": "yarn workspace @scaffold-eth/hardhat chain",
"fork": "yarn workspace @scaffold-eth/hardhat fork",
"node": "yarn workspace @scaffold-eth/hardhat chain",
"test": "yarn workspace @scaffold-eth/hardhat test",
"start": "yarn workspace @scaffold-eth/vite-app start",
"compile": "yarn workspace @scaffold-eth/hardhat compile",
"export": "yarn workspace @scaffold-eth/hardhat export",
"deploy": "yarn workspace @scaffold-eth/hardhat deploy",
"watch": "yarn workspace @scaffold-eth/hardhat watch",
"accounts": "yarn workspace @scaffold-eth/hardhat accounts",
"balance": "yarn workspace @scaffold-eth/hardhat balance",
"send": "yarn workspace @scaffold-eth/hardhat send",
"ipfs": "yarn workspace @scaffold-eth/vite-app ipfs",
"surge": "yarn workspace @scaffold-eth/vite-app surge",
"s3": "yarn workspace @scaffold-eth/vite-app s3",
"ship": "yarn workspace @scaffold-eth/vite-app ship",
"generate": "yarn workspace @scaffold-eth/hardhat generate",
"account": "yarn workspace @scaffold-eth/hardhat account",
"mine": "cd packages/hardhat-ts && npx hardhat mine",
"wallet": "cd packages/hardhat-ts && npx hardhat wallet",
"fundedwallet": "cd packages/hardhat-ts && npx hardhat fundedwallet",
"flatten": "cd packages/hardhat-ts && npx hardhat flatten",
"clean": "cd packages/hardhat-ts && npx hardhat clean",
"run-graph-node": "yarn workspace @scaffold-eth/services run-graph-node",
"remove-graph-node": "yarn workspace @scaffold-eth/services remove-graph-node",
"clean-graph-node": "yarn workspace @scaffold-eth/services clean-graph-node",
"graph-prepare": "mustache packages/subgraph/config/config.json packages/subgraph/src/subgraph.template.yaml > packages/subgraph/subgraph.yaml",
"graph-codegen": "yarn workspace @scaffold-eth/subgraph graph codegen",
"graph-build": "yarn workspace @scaffold-eth/subgraph graph build",
"graph-create-local": "yarn workspace @scaffold-eth/subgraph graph create --node http://localhost:8020/ scaffold-eth/your-contract",
"graph-remove-local": "yarn workspace @scaffold-eth/subgraph graph remove --node http://localhost:8020/ scaffold-eth/your-contract",
"graph-deploy-local": "yarn workspace @scaffold-eth/subgraph graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 scaffold-eth/your-contract",
"graph-ship-local": "yarn graph-prepare && yarn graph-codegen && yarn graph-deploy-local",
"deploy-and-graph": "yarn deploy && yarn graph-ship-local",
"theme": "yarn workspace @scaffold-eth/react-app theme",
"watch-theme": "yarn workspace @scaffold-eth/react-app watch"
},
"workspaces": {
"packages": [
"packages/hardhat-ts",
"packages/vite-app-ts",
"packages/services/*",
"packages/subgraph"
]
},
"packageManager": "[email protected]",
"devDependencies": {
"shx": "^0.3.3"
},
"dependencies": {
"react": "^17.0.2"
}
"name": "@scaffold-eth/typescript",
"version": "0.1.0-beta02",
"keywords": [
"ethereum",
"react",
"uniswap",
"workspaces",
"yarn"
],
"private": true,
"scripts": {
"build": "yarn workspace @scaffold-eth/vite-app build",
"serve": "yarn workspace @scaffold-eth/vite-app serve",
"chain": "yarn workspace @scaffold-eth/hardhat chain",
"fork": "yarn workspace @scaffold-eth/hardhat fork",
"node": "yarn workspace @scaffold-eth/hardhat chain",
"test": "yarn workspace @scaffold-eth/hardhat test",
"start": "yarn workspace @scaffold-eth/vite-app start",
"compile": "yarn workspace @scaffold-eth/hardhat compile",
"export": "yarn workspace @scaffold-eth/hardhat export",
"deploy": "yarn workspace @scaffold-eth/hardhat deploy",
"watch": "yarn workspace @scaffold-eth/hardhat watch",
"accounts": "yarn workspace @scaffold-eth/hardhat accounts",
"balance": "yarn workspace @scaffold-eth/hardhat balance",
"send": "yarn workspace @scaffold-eth/hardhat send",
"ipfs": "yarn workspace @scaffold-eth/vite-app ipfs",
"surge": "yarn workspace @scaffold-eth/vite-app surge",
"s3": "yarn workspace @scaffold-eth/vite-app s3",
"ship": "yarn workspace @scaffold-eth/vite-app ship",
"generate": "yarn workspace @scaffold-eth/hardhat generate",
"account": "yarn workspace @scaffold-eth/hardhat account",
"mine": "cd packages/hardhat-ts && npx hardhat mine",
"wallet": "cd packages/hardhat-ts && npx hardhat wallet",
"fundedwallet": "cd packages/hardhat-ts && npx hardhat fundedwallet",
"flatten": "cd packages/hardhat-ts && npx hardhat flatten",
"clean": "cd packages/hardhat-ts && npx hardhat clean",
"run-graph-node": "yarn workspace @scaffold-eth/services run-graph-node",
"remove-graph-node": "yarn workspace @scaffold-eth/services remove-graph-node",
"clean-graph-node": "yarn workspace @scaffold-eth/services clean-graph-node",
"graph-prepare": "mustache packages/subgraph/config/config.json packages/subgraph/src/subgraph.template.yaml > packages/subgraph/subgraph.yaml",
"graph-codegen": "yarn workspace @scaffold-eth/subgraph graph codegen",
"graph-build": "yarn workspace @scaffold-eth/subgraph graph build",
"graph-create-local": "yarn workspace @scaffold-eth/subgraph graph create --node http://localhost:8020/ scaffold-eth/your-contract",
"graph-remove-local": "yarn workspace @scaffold-eth/subgraph graph remove --node http://localhost:8020/ scaffold-eth/your-contract",
"graph-deploy-local": "yarn workspace @scaffold-eth/subgraph graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 scaffold-eth/your-contract",
"graph-ship-local": "yarn graph-prepare && yarn graph-codegen && yarn graph-deploy-local",
"deploy-and-graph": "yarn deploy && yarn graph-ship-local",
"theme": "yarn workspace @scaffold-eth/react-app theme",
"watch-theme": "yarn workspace @scaffold-eth/react-app watch"
},
"workspaces": {
"packages": [
"packages/hardhat-ts",
"packages/vite-app-ts",
"packages/services/*",
"packages/subgraph"
]
},
"packageManager": "[email protected]",
"devDependencies": {
"eslint": "^7.32.0",
"prettier": "^2.4.1",
"shx": "^0.3.3"
},
"dependencies": {
"react": "^17.0.2"
}
}
2 changes: 2 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2112,6 +2112,8 @@ __metadata:
version: 0.0.0-use.local
resolution: "@scaffold-eth/typescript@workspace:."
dependencies:
eslint: ^7.32.0
prettier: ^2.4.1
react: ^17.0.2
shx: ^0.3.3
languageName: unknown
Expand Down

0 comments on commit e5b946e

Please sign in to comment.