-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
{
"name": "graphql-rest-router",
"version": "1.0.0-beta.1",
"description": "",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"lint": "eslint . --ext .ts",
"build": "npm run clean && tsc && cp package.json README.md build",
"clean": "rm -rf build",
"live-test": "bash ./example-consuming-client/build.sh",
"test": "nyc mocha -r ts-node/register ./test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Econify/graphql-rest-router.git"
},
"author": "Stephen Baldwin <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Econify/graphql-rest-router/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm t"
}
},
"homepage": "https://github.com/Econify/graphql-rest-router#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.1.7",
"@types/express": "^4.17.1",
"@types/jest": "^26.0.20",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/redis": "^2.8.32",
"@types/sinon": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"chai": "^4.2.0",
"eslint": "^7.12.1",
"eslint-plugin-import": "^2.22.1",
"faker": "^5.5.3",
"husky": "^4.2.3",
"lint-staged": "^10.5.1",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"sinon": "^7.2.2",
"ts-node": "^7.0.1",
"typescript": "4.0.3"
},
"dependencies": {
"axios": "^0.21.4",
"express": "^4.17.1",
"graphql": "^14.0.2",
"redis": "^3.1.2",
"tslib": "^2.1.0"
}
}