forked from 0xProject/0x-launch-kit-backend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 2.02 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
{
"name": "0x-launch-kit",
"version": "0.0.2",
"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 -r dotenv/config 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 -r dotenv/config ts/lib/index.js",
"lint:ts": "tslint --project ts --format stylish"
},
"devDependencies": {
"@0x/tslint-config": "^3.0.0",
"@types/cors": "^2.8.4",
"@types/dotenv": "^6.1.0",
"@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": "^4.0.1",
"@0x/assert": "^2.0.1",
"@0x/connect": "^4.0.1",
"@0x/contract-addresses": "^2.2.1",
"@0x/json-schemas": "^3.0.1",
"@0x/order-watcher": "^3.0.1",
"@0x/subproviders": "^3.0.1",
"@0x/types": "^2.0.1",
"@0x/typescript-typings": "^4.0.0",
"@0x/utils": "^4.0.2",
"@0x/web3-wrapper": "^4.0.1",
"@babel/polyfill": "^7.0.0",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"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"
}
}