forked from amaury1093/login-with-metamask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 834 Bytes
/
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
{
"name": "login-with-metamask",
"version": "2.0.0",
"author": "Amaury <[email protected]>",
"description": "Demo project for 'One-click Login with Blockchain: A MetaMask Tutorial'",
"license": "MIT",
"private": true,
"repository": "https://github.com/amaurym/login-with-metamask-demo.git",
"scripts": {
"deploy:backend": "git push heroku `git subtree split --prefix packages/backend master`:master",
"deploy:frontend": "cd packages/frontend && yarn build && gh-pages -d build",
"lint": "tsc --noEmit && eslint . --ext js,ts,tsx",
"start:backend": "cd packages/backend && yarn start",
"start:frontend": "cd packages/frontend && yarn start",
"start": "run-p -l start:*"
},
"devDependencies": {
"@amaurym/config": "^1.3.4",
"gh-pages": "^3.2.3",
"npm-run-all": "^4.1.5",
"typescript": "^4.3.5"
}
}