-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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
{
"name": "transaction-indexer",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"prepare": "tsc",
"build": "rm -rf build/ && prettier --write src/ && tsc",
"start": "ts-node src/server.ts",
"test" : "mocha --require ts-node/register --watch-extensions ts \"test/**/*.ts\""
},
"keywords": [],
"author": "Monzer Masri",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"bignumber.js": "9.1.0",
"body-parser": "^1.20.0",
"dot-env": "^0.0.1",
"express": "^4.18.1",
"node-fetch": "^2.6.1",
"create-typescript-project": "^0.8.0",
"ethers" : "5.7.1",
"mysql" : "2.18.1",
"typeorm" : "0.3.10",
"reflect-metadata" :"0.1.13",
"typeorm-transactional" : "0.2.1"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/node": "^14.18.29",
"@types/node-fetch": "^2.6.2",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"chai" : "^4.1.2",
"mocha" : "^5.0.1",
"chai-http" : "4.3.0"
}
}