-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.1 KB
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
{
"name": "@rantomdotapp/parser",
"version": "1.0.0",
"description": "Blockchain transaction parser for human",
"license": "MIT",
"scripts": {
"build": "rm -rf ./build && tsc",
"test": "ts-mocha --timeout 0 --exit 'tests/**/*.ts'",
"pretty": "node scripts/pretty.js && prettier --write ./",
"start": "node build/cmd/index.js"
},
"dependencies": {
"@sentry/node": "^7.28.1",
"@sentry/tracing": "^7.28.1",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/chai": "^4.3.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.23",
"@types/winston": "^2.4.4",
"@types/yargs": "^17.0.10",
"axios": "^1.5.0",
"bignumber.js": "^9.0.2",
"body-parser": "^1.20.0",
"chai": "^4.3.6",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"mocha": "^10.2.0",
"mongodb": "^4.4.1",
"prettier": "^3.0.3",
"ts-mocha": "^10.0.0",
"typescript": "^4.6.3",
"winston": "^3.9.0",
"yargs": "^17.4.0"
}
}