forked from 0xProject/0x-launch-kit-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.83 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
{
"name": "0x-launch-kit",
"version": "0.0.1",
"description": "Template 0x relayer",
"repository": "git@github.com:0xProject/0x-launch-kit.git",
"author": "Leonid Logvinov <logvinov.leon@gmail.com>",
"license": "Apache-2.0",
"scripts": {
"prettier": "yarn prettier:js && yarn prettier:ts",
"build": "yarn build:ts && shx rm -rf js && shx cp -r ts/lib/ js",
"prettier:js": "prettier --write 'js/**/*.js' --config .prettierrc",
"start:js": "node js/index.js",
"build:ts": "tsc -p ts/tsconfig.json",
"watch:ts": "tsc -w -p ts/tsconfig.json",
"prettier:ts": "prettier --write 'ts/**/*.ts' --config .prettierrc",
"start:ts": "node ts/lib/index.js",
"lint:ts": "tslint --project ts --format stylish"
},
"devDependencies": {
"@0x/tslint-config": "^1.0.10",
"@types/express": "^4.16.0",
"@types/lodash": "^4.14.116",
"@types/web3-provider-engine": "^14.0.0",
"prettier": "^1.14.3",
"shx": "^0.3.2",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"dependencies": {
"0x.js": "^1.0.4",
"@0x/connect": "^3.0.4",
"@0x/json-schemas": "^2.1.0",
"@0x/order-utils": "^3.0.0",
"@0x/order-watcher": "^2.2.3",
"@0x/subproviders": "^2.1.2",
"@0x/types": "^1.2.1",
"@0x/typescript-typings": "^3.0.4",
"@0x/utils": "^2.0.4",
"@0x/web3-wrapper": "^3.1.4",
"@babel/polyfill": "^7.0.0",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"express-async-handler": "^1.1.4",
"forever": "^0.15.3",
"http-status-codes": "^1.3.0",
"jsonschema": "^1.2.4",
"lodash": "^4.17.11",
"reflect-metadata": "^0.1.10",
"sqlite3": "^4.0.2",
"typeorm": "0.2.7"
}
}