-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 1.01 KB
/
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
35
{
"name": "substrate-faucet-bot",
"version": "0.0.1",
"description": "Substrate Faucet Bot",
"scripts": {
"dev": "webpack --progress --watch",
"prod": "rm -rf ./dist && webpack --mode production --progress",
"start": "node ./dist/app.js"
},
"author": "Dappforce Team <subsocial.network>",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.14.0",
"@polkadot/api": "^8.0.2",
"@polkadot/util-crypto": "^9.0.1",
"bn.js": "^5.2.0",
"discord.js": "^12.5.3",
"dotenv": "^16.0.0",
"dotenv-webpack": "^7.1.0",
"lru-cache": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/runtime-corejs2": "^7.14.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^8.1.1",
"webpack": "^5.37.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
}
}