-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
121 lines (121 loc) · 4.25 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
{
"name": "resolution-service",
"version": "0.0.0",
"description": "Service resolves .crypto and .zil domains",
"main": "index.js",
"repository": "[email protected]:unstoppabledomains/resolution-service.git",
"author": "Kirill Beresnev <[email protected]>",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": "=>14.16.1 <15"
},
"directories": {
"src": "./src"
},
"scripts": {
"test": "dotenv -e local.test.env -- mocha --exit",
"test:coverage": "NODE_ENV=test nyc --reporter=text yarn test",
"build": "tsc",
"start:dev": "ts-node src/index.ts",
"fix": "yarn prettier:fix && yarn eslint:fix",
"lint": "yarn build:check && yarn prettier:check && yarn eslint:check",
"build:check": "tsc --noEmit",
"prettier:check": "prettier -l \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"prettier:fix": "prettier --write -l \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"eslint:check": "eslint --ext .ts,.js src",
"eslint:fix": "eslint --ext .ts,.js src --fix",
"prepare": "husky install",
"typeorm": "ts-node -T node_modules/.bin/typeorm",
"db:migration:sync": "yarn db:migration:pending && yarn typeorm migration:generate -n",
"db:migration:new": "yarn typeorm migration:create -n",
"db:migration:run": "yarn typeorm migration:run",
"db:migration:revert": "yarn typeorm migration:revert",
"db:migration:pending": "yarn typeorm migration:show | (! grep -E '\\[ \\]' )",
"db:snapshot:create": "./tools/create-snapshot",
"db:snapshot:load": "RESOLUTION_RUNNING_MODE=LOAD_SNAPSHOT yarn start:dev",
"db:snapshot:check": "yarn typeorm schema:drop && yarn db:migration:run && yarn db:snapshot:load"
},
"dependencies": {
"@bugsnag/js": "^7.9.2",
"@bugsnag/plugin-express": "^7.9.2",
"@types/btoa": "^1.2.3",
"@types/uuid": "^8.3.1",
"@zilliqa-js/crypto": "^2.3.0-alpha.0",
"@zilliqa-js/util": "^2.2.0",
"@zilliqa-js/zilliqa": "^2.3.0-alpha.0",
"body-parser": "^1.19.0",
"btoa": "^1.2.1",
"canvas": "^2.8.0",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"class-validator-jsonschema": "^3.0.1",
"cors": "^2.8.5",
"dot-crypto": "https://github.com/unstoppabledomains/dot-crypto.git#10be3194ab50021ec59983b5b7ef81479321a02e",
"ethers": "^5.1.4",
"express": "^4.17.1",
"js-sha256": "^0.9.0",
"js-sha3": "^0.8.0",
"multer": "^1.4.2",
"negotiator": "^0.6.2",
"newrelic": "latest",
"node-fetch": "^2.6.1",
"path-that-svg": "^1.2.4",
"pg": "^8.6.0",
"punycode": "^2.1.1",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0",
"routing-controllers-openapi": "^3.0.0",
"set-interval-async": "^2.0.3",
"swagger-ui-express": "^4.1.6",
"typeorm": "0.2.38",
"uns": "https://github.com/unstoppabledomains/uns.git#9f659eb26c3fefd65d91cae3804b7de21747c212",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"winston-3-bugsnag-transport": "^1.0.2"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.3",
"@types/chai-subset": "^1.3.3",
"@types/express": "^4.17.11",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.2",
"@types/multer": "^1.4.5",
"@types/newrelic": "^7.0.1",
"@types/node": "^15.0.2",
"@types/node-fetch": "^2.5.10",
"@types/set-interval-async": "^1.0.0",
"@types/sinon": "^10.0.0",
"@types/sinon-chai": "^3.2.5",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"ganache-cli": "^6.12.2",
"ganache-core": "^2.13.2",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^8.3.2",
"nock": "^13.1.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0",
"supertest": "^6.1.3",
"tar": "^6.1.6",
"ts-node": "^9.1.1",
"typechain": "^4.0.3",
"typeorm-factory": "^0.0.14",
"typescript": "^4.2.4"
}
}