aboutsummaryrefslogtreecommitdiffstats
path: root/packages/testnet-faucets/package.json
blob: ccb30390917fd82f5990f8bcd0221101637e0e15 (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
{
    "private": true,
    "name": "@0xproject/testnet-faucets",
    "version": "1.0.15",
    "description": "A faucet micro-service that dispenses test ERC20 tokens or Ether",
    "main": "server.js",
    "scripts": {
        "build:watch": "tsc -w",
        "build": "node ../../node_modules/gulp/bin/gulp.js build",
        "dev": "node ../../node_modules/gulp/bin/gulp.js run",
        "start": "node ./bin/server.js",
        "lint": "tslint --project . 'src/**/*.ts'",
        "clean": "shx rm -rf bin"
    },
    "author": "Fabio Berger",
    "license": "Apache-2.0",
    "dependencies": {
        "0x.js": "^0.33.0",
        "@0xproject/subproviders": "^0.6.0",
        "@0xproject/utils": "^0.4.0",
        "body-parser": "^1.17.1",
        "ethereumjs-tx": "^1.3.3",
        "ethereumjs-util": "^5.1.1",
        "express": "^4.15.2",
        "lodash": "^4.17.4",
        "rollbar": "^0.6.5",
        "web3": "^0.20.0",
        "web3-provider-engine": "^13.0.1"
    },
    "devDependencies": {
        "@0xproject/tslint-config": "^0.4.10",
        "@types/body-parser": "^1.16.1",
        "@types/express": "^4.0.35",
        "@types/lodash": "^4.14.86",
        "awesome-typescript-loader": "^3.1.3",
        "gulp": "^3.9.1",
        "nodemon": "^1.11.0",
        "shx": "^0.2.2",
        "source-map-loader": "^0.1.6",
        "tslint": "5.8.0",
        "types-bn": "^0.0.1",
        "types-ethereumjs-util": "0xProject/types-ethereumjs-util",
        "typescript": "2.7.1",
        "web3-typescript-typings": "^0.10.0",
        "webpack": "^3.1.0",
        "webpack-node-externals": "^1.6.0"
    }
}