forked from 0xProject/0x-launch-kit-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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.1.1",
"description": "Template 0x relayer",
"repository": "[email protected]:0xProject/0x-launch-kit.git",
"author": "Leonid Logvinov <[email protected]>",
"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.1",
"@types/cors": "^2.8.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/lodash": "^4.14.126",
"@types/web3-provider-engine": "^14.0.0",
"prettier": "^1.17.0",
"shx": "^0.3.2",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"dependencies": {
"0x.js": "^6.0.11",
"@0x/assert": "^2.0.10",
"@0x/connect": "^5.0.12",
"@0x/contract-addresses": "^3.0.1",
"@0x/json-schemas": "^3.0.10",
"@0x/order-watcher": "^4.0.13",
"@0x/subproviders": "^4.0.6",
"@0x/types": "^2.2.2",
"@0x/typescript-typings": "^4.2.2",
"@0x/utils": "^4.3.3",
"@0x/web3-wrapper": "^6.0.6",
"@babel/polyfill": "^7.4.4",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.16.3",
"express-async-handler": "^1.1.4",
"forever": "^1.0.0",
"http-status-codes": "^1.3.2",
"jsonschema": "^1.2.4",
"lodash": "^4.17.11",
"reflect-metadata": "^0.1.13",
"sqlite3": "^4.0.8",
"typeorm": "0.2.17"
}
}