-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 940 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
24
25
26
27
28
29
30
31
32
33
34
{
"name": "faucet",
"version": "1.0.0",
"main": "index.js",
"author": "Luke Schoen <ltfschoen@gmail.com>",
"license": "MIT",
"engines": {
"node": "14.x",
"npm": "6.x",
"yarn": "1.x"
},
"scripts": {
"start": "DEBUG=app node server.js",
"heroku-postbuild": "cd client && yarn install && yarn install --only=dev --no-shrinkwrap && yarn run build",
"client": "cd client && yarn && yarn start",
"server": "yarn && nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"DEBUG=app yarn server\" \"yarn client\""
},
"dependencies": {
"@polkadot/api": "2.9.1",
"@truffle/hdwallet-provider": "^1.0.37-next.1",
"bn.js": "^5.1.2",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.0",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"react-bootstrap": "^1.0.1",
"web3": "^1.2.9"
},
"devDependencies": {
"concurrently": "^5.2.0"
}
}