-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1 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
{
"name": "li-fi-backend",
"version": "0.1.0",
"author": "Jose Ramirez <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"types": "./lib/index.d.ts",
"engineStrict": false,
"engines": {
"node": "^14.x || >=16.x"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc --build ./tsconfig.json",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"loadTransfers:ts": "ts-node index.ts" ,
"loadTransfers": "npm run build && node ./lib/index.js"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"ts-node": "^10.8.0",
"typescript": "4.7.2"
},
"dependencies": {
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"to-hex": "^0.0.18"
}
}