-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
{
"name": "spark-indexer",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"engines": {
"node": "18.14.0"
},
"scripts": {
"test": "jest",
"start": "node dist/server.js",
"dev": "nodemon",
"build": "tsc --p tsconfig.build.json",
"format": "prettier --write \"src/**/*.{ts,js,tsx,jsx,css}\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.7",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.14",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.11.2",
"@types/node-cron": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.0",
"prettier": "^2.1.2",
"ts-jest": "^26.4.0",
"ts-node": "^9.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@fuel-ts/wallet": "^0.39.1",
"@types/request": "^2.48.8",
"bignumber.js": "^9.1.1",
"body-parser": "^1.20.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"dotenv": "^8.6.0",
"errorhandler": "^1.5.1",
"express": "^4.18.2",
"fuels": "^0.39.1",
"mongoose": "^5.10.6",
"node-cron": "^3.0.2",
"request": "^2.88.2",
"tsdef": "^0.0.14"
}
}