This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
109 lines (109 loc) · 2.87 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
{
"name": "rb-node",
"version": "1.0.0",
"engines": {
"node": "8.11.2"
},
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"start-dev": "yarn build && yarn watch",
"start-ts": "ts-node src/index.ts",
"build": "yarn build-ts && yarn tslint",
"build-ts": "tsc",
"postinstall": "yarn build",
"fix-scrypt": "sed -i -e 's/.\\/build\\/Release\\/scrypt/scrypt/' node_modules/scrypt/index.js",
"test": "jest --forceExit",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"watch": "nodemon --watch 'src/**/*.ts' --ignore 'test/**/*.spec.ts' --exec 'ts-node' src/index.ts",
"watch-ts": "tsc -w"
},
"author": "",
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/test/**/*.test.(ts|js)"
],
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "<rootDir>/test/_setup.ts"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --parser typescript --write",
"git add"
]
},
"license": "ISC",
"dependencies": {
"0x.js": "^0.26.1",
"@0xproject/assert": "0.0.7",
"@0xproject/json-schemas": "^0.6.10",
"@0xproject/tslint-config": "^0.2.1",
"@0xproject/types": "^0.4.1",
"@0xproject/utils": "^0.4.3",
"@types/bluebird": "^3.5.20",
"@types/compression": "0.0.35",
"@types/dotenv": "^4.0.2",
"@types/errorhandler": "0.0.32",
"@types/express": "^4.0.39",
"@types/lodash": "^4.14.91",
"@types/morgan": "^1.7.35",
"@types/node": "^8.5.1",
"axios": "^0.19.2",
"bignumber.js": "^4.1.0",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"compression": "^1.7.1",
"connect-timeout": "^1.9.0",
"dotenv": "^4.0.0",
"errorhandler": "^1.5.0",
"eth-sig-util": "^1.4.1",
"express": "^4.16.2",
"express-sslify": "^1.2.0",
"express-validator": "^4.3.0",
"ioredis": "^3.2.2",
"jest": "^22.0.3",
"jest-cli": "^23.0.0-alpha.0",
"lodash": "^4.17.4",
"morgan": "^1.9.0",
"path": "^0.12.7",
"rollbar": "^2.3.3",
"setprotocol.js": "1.2.2-rc27",
"truffle-contract": "^3.0.1",
"truffle-hdwallet-provider": "0.0.3",
"ts-node": "^4.0.2",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.6.0",
"typescript": "^3.1.2",
"web3": "1.0.0-beta.36"
},
"devDependencies": {
"@types/connect-timeout": "^0.0.34",
"husky": "^3.0.1",
"lint-staged": "^6.1.0",
"nodemon": "^1.14.3",
"prettier": "^1.10.2",
"supertest": "^3.0.0",
"ts-jest": "^22.0.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged",
"pre-push": "yarn build && yarn test"
}
}
}