-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
134 lines (134 loc) · 4.55 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "augur-node",
"version": "7.11.9",
"description": "Augur Node",
"author": "The Augur Developers <[email protected]>",
"license": "MIT",
"main": "build/index.js",
"typings": "definitions/index",
"typescript": {
"definition": "definitions/index"
},
"directories": {
"src": "src",
"test": "test"
},
"scripts": {
"version": "npm run rebuild",
"go": "scripts/go.sh",
"start": "ts-node ./src/runServer",
"debug": "node --inspect-brk ./build/runServer",
"knex": "ts-node ./node_modules/.bin/knex",
"test": "jest --runInBand",
"test:integration": "mocha 'test/integration/**/*.ts'",
"test:integration:docker": "docker-compose up --force-recreate --abort-on-container-exit",
"lint": "tslint -c tslint.json -p . -e src/version.ts && eslint test/unit",
"build:ts": "genversion --es6 --semi src/version.ts && tsc",
"build": "npm-run-all lint build:ts",
"watch": "genversion --es6 --semi src/version.ts && tsc -w",
"init-git": "if [ -d \".git\" ]; then exit 0; else git init; fi",
"nuke": "rm -f package-lock.json; rm -f yarn.lock; rm -rf node_modules; npm run clean",
"coveralls": "jest --runInBand --coverage && cat ./coverage/lcov.info | coveralls",
"migrate_pg": "knex migrate:latest --env pg",
"migrate:make": "knex migrate:make -x ts $1",
"postinstall": "postinstall-build build",
"postdeploy": "npm run migrate_pg",
"link": "npm link augur.js speedomatic",
"clean": "rm -rf augur*.db build definitions",
"rebuild": "npm run clean && npm run build",
"clean-start": "npm run rebuild && npm start",
"clean-start-local": "npm run rebuild && ETHEREUM_HTTP=http://127.0.0.1:8545 ETHEREUM_WS=ws://127.0.0.1:8546 npm start",
"rinkeby-start": "ETHEREUM_HTTP=https://eth-rinkeby.alchemyapi.io/jsonrpc/xWkVwAbM7Qr-p8j-Zu_PPwldZJKmaKjx npm start",
"reinstall": "./scripts/reinstall.sh",
"sqlite": "./scripts/sqlite.sh",
"docker:pg:start": "./scripts/postgres/start.sh",
"docker:pg:stop": "./scripts/postgres/stop.sh",
"docker:pg:restart": "npm run docker:pg:stop && npm run docker:pg:start",
"docker:geth:pop": "npm explore augur.js -- npm run docker:geth:pop",
"docker:build": "scripts/docker/build.sh",
"docker:release": "bash scripts/release-docker.sh",
"prepush": "npm-run-all build test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AugurProject/augur-node.git"
},
"bugs": {
"url": "https://github.com/AugurProject/augur-node/issues"
},
"homepage": "https://github.com/AugurProject/augur-node#readme",
"dependencies": {
"@types/async": "2.0.43",
"@types/express": "4.11.0",
"@types/helmet": "0.0.40",
"@types/lodash": "4.14.105",
"@types/node": "8.10.20",
"@types/sqlite3": "3.1.1",
"@types/uuid": "3.4.3",
"@types/ws": "3.0.2",
"augur.js": "6.7.1",
"async": "2.6.0",
"axios": "^0.19.0",
"bignumber.js": "6.0.0",
"chalk": "2.3.2",
"cors": "^2.8.5",
"ethrpc": "6.2.1",
"express": "4.16.2",
"helmet": "3.13.0",
"io-ts": "1.3.0",
"knex": "0.14.4",
"lodash": "4.17.11",
"md5-file": "^4.0.0",
"pg": "7.3.0",
"postinstall-build": "5.0.1",
"speedomatic": "2.1.5",
"sqlite3": "^4.0.2",
"ts-node": "^6.1.1",
"uuid": "3.1.0",
"webpack": "4.8.1",
"ws": "5.1.1",
"zlib": "^1.0.5"
},
"devDependencies": {
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/plugin-transform-typescript": "^7.1.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"@babel/preset-stage-0": "7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/register": "7.0.0",
"@babel/runtime": "7.1.2",
"@types/chai": "^4.1.3",
"@types/cors": "^2.8.4",
"@types/jest": "^23.3.5",
"@types/knex": "0.14.8",
"@types/md5-file": "^4.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"babel-loader": "8.0.4",
"coveralls": "3.0.1",
"deepmerge": "^3.0.0",
"eslint": "^5.7.0",
"eslint-plugin-jest": "^21.26.0",
"genversion": "^2.1.0",
"husky": "^0.14.3",
"jest": "23.6.0",
"jest-cli": "23.6.0",
"node-gyp": "3.6.2",
"node-pre-gyp": "0.13.0",
"npm-run-all": "^4.1.5",
"replace-in-file": "3.0.0",
"tslint": "5.7.0",
"tslint-eslint-rules": "4.1.1",
"typescript": "3.3.3333"
},
"buildDependencies": [
"typescript",
"tslint",
"tslint-eslint-rules"
]
}