-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 816 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 816 Bytes
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
36
37
38
39
{
"name": "nano-faucet",
"version": "1.0.0",
"description": "A nice minimal Ethereum faucet that's easy to deploy and simple to operate.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"lint": "eslint"
},
"author": "Petar Slovic <petar@petar.io>",
"license": "MIT",
"keywords": [
"ethereum",
"faucet",
"testnet",
"ropsten",
"rinkeby"
],
"engines": {
"node": ">=9.3.0"
},
"dependencies": {
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"module-alias": "^2.1.0",
"morgan": "^1.9.0",
"web3": "^1.0.0-beta.34"
},
"devDependencies": {
"eslint": "^5.0.1",
"eslint-plugin-react": "^7.10.0"
},
"_moduleAliases": {
"@": "src",
"@api": "src/api",
"@services": "src/services"
}
}