forked from poanetwork/poa-faucet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.3 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "nodejs-faucet",
"version": "1.0.0",
"description": "nodejs ethereum faucet",
"main": "index.js",
"scripts": {
"start": "npm run build && node index.js",
"build": "./node_modules/.bin/gulp build",
"serve": " ./node_modules/.bin/gulp watch",
"testrpc": "./node_modules/.bin/testrpc"
},
"repository": {
"type": "git",
"url": "https://github.com/aletheia-foundation/oracles-faucet"
},
"author": "aletheia-foundation",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"config": "^1.26.1",
"ethereumjs-tx": "^1.3.1",
"express": "^4.15.4",
"express-session": "^1.15.5",
"express-winston": "^2.4.0",
"gulp-nodemon": "^2.2.1",
"querystring": "^0.2.0",
"svg-captcha": "^1.3.9",
"web3": "^0.19.1",
"winston": "^2.3.1",
"winston-express": "^0.1.1"
},
"devDependencies": {
"ethereumjs-testrpc": "^4.0.1",
"gulp": "^3.9.1",
"gulp-add-src": "^0.2.0",
"gulp-autoprefixer": "^3.1.1",
"gulp-concat": "^2.6.1",
"gulp-concat-css": "^2.3.0",
"gulp-include": "^2.3.1",
"gulp-order": "^1.1.1",
"gulp-postcss": "^6.2.0",
"gulp-sass": "^2.3.2",
"gulp-sass-glob": "^1.0.6",
"gulp-uglify": "^2.0.0",
"gulp-uglifycss": "^1.0.6",
"http-server": "^0.9.0"
}
}