-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.4 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
{
"name": "mock-helius",
"version": "0.1.0",
"description": "Helius Mock Webhook Service",
"author": "Dcaf Labs",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"prepack": "yarn run build",
"build": "yarn run tsc",
"start": "node dist/index.js",
"start:dev": "ts-node src/index.ts",
"clean": "rm -rf dist | true && rm -rf tsconfig.tsbuildinfo | true",
"lint": "yarn run lint:eslint && yarn run lint:prettier",
"lint:fix": "yarn run lint:eslint:fix && yarn run lint:prettier:fix",
"lint:eslint": "eslint --ignore-path .gitignore --ext .ts . ",
"lint:prettier": "prettier \"*/**/*{.js,.ts,.yaml}\" --check --ignore-path .gitignore",
"lint:eslint:fix": "eslint --ignore-path .gitignore --fix --ext .ts . ",
"lint:prettier:fix": "prettier --write \"*/**/*{.js,.ts,.yaml}\" --ignore-path .gitignore"
},
"dependencies": {
"@solana/web3.js": "^1.78.2",
"@types/node": "^20.4.5",
"@types/superagent": "^4.1.18",
"dotenv": "^16.3.1",
"inversify": "^6.0.1",
"inversify-binding-decorators": "^4.0.0",
"reflect-metadata": "^0.1.13",
"superagent": "^8.0.9",
"tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.11",
"eslint": "^8.9.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}