-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.31 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
{
"name": "blocks-api",
"version": "1.0.0",
"description": "Simple Apollo's GraphQL API for blocks from Bitcoin's blockchain",
"main": "index.js",
"scripts": {
"start": "node ./dist/index.js",
"build": "tsc",
"lint": "eslint --ext .tsx,.ts,.js,.jsx ./ --ignore-path .gitignore",
"lint:fix": "eslint --ext .tsx,.ts,.js,.jsx --fix ./ --ignore-path .gitignore",
"develop": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matyas-igor/blocks-api.git"
},
"keywords": [],
"author": "Igor Matias",
"license": "ISC",
"bugs": {
"url": "https://github.com/matyas-igor/blocks-api/issues"
},
"homepage": "https://github.com/matyas-igor/blocks-api#readme",
"dependencies": {
"apollo-datasource-rest": "^0.9.5",
"apollo-server": "^2.19.0",
"apollo-type-bigint": "^0.1.3",
"graphql": "^15.4.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.2.1",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=12.x"
}
}