aboutsummaryrefslogtreecommitdiffstats
path: root/packages/testnet-faucets/package.json
blob: 712ac67958fecd297557df8d42b0b1ff90ef61f2 (plain) (blame)
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
50
51
{
    "private": true,
    "name": "@0xproject/testnet-faucets",
    "version": "1.0.34",
    "engines": {
        "node": ">=6.12"
    },
    "description": "A faucet micro-service that dispenses test ERC20 tokens or Ether",
    "main": "server.js",
    "scripts": {
        "watch_without_deps": "tsc -w",
        "build": "node ../../node_modules/gulp/bin/gulp.js build",
        "dev": "node ../../node_modules/gulp/bin/gulp.js run",
        "start": "node ./server/server.js",
        "lint": "tslint --project .",
        "clean": "shx rm -rf server"
    },
    "author": "Fabio Berger",
    "license": "Apache-2.0",
    "dependencies": {
        "0x.js": "^0.38.0",
        "@0xproject/subproviders": "^0.10.4",
        "@0xproject/typescript-typings": "^0.4.1",
        "@0xproject/utils": "^0.7.1",
        "body-parser": "^1.17.1",
        "ethereumjs-tx": "^1.3.5",
        "ethereumjs-util": "^5.1.1",
        "express": "^4.15.2",
        "lodash": "^4.17.4",
        "rollbar": "^0.6.5",
        "web3": "^0.20.0",
        "web3-provider-engine": "^14.0.4"
    },
    "devDependencies": {
        "@0xproject/tslint-config": "^0.4.20",
        "@types/body-parser": "^1.16.1",
        "@types/express": "^4.0.35",
        "@types/lodash": "4.14.104",
        "ethereum-types": "^0.0.1",
        "awesome-typescript-loader": "^3.1.3",
        "gulp": "^3.9.1",
        "make-promises-safe": "^1.1.0",
        "nodemon": "^1.11.0",
        "shx": "^0.2.2",
        "source-map-loader": "^0.1.6",
        "tslint": "5.8.0",
        "typescript": "2.7.1",
        "webpack": "^3.1.0",
        "webpack-node-externals": "^1.6.0"
    }
}