-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.3 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
{
"name": "covidgql",
"version": "1.0.0",
"description": "GraphQL API for Covid19 Status in Indonesia",
"main": "build/index.js",
"scripts": {
"start": "tsc && node build/index.js",
"test": "tsc",
"getkeys": "node utilities/retrievekeys.js",
"lint": "eslint .",
"lint:fix": "eslint --fix"
},
"keywords": [
"covid19",
"covid",
"graphql",
"express",
"nodejs",
"javascript"
],
"author": "Christian Harjuno (SorataBaka)",
"license": "MIT",
"devDependencies": {
"@commitlint/config-conventional": "^16.2.1",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/serve-favicon": "^2.5.3",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"commitlint": "^16.2.1",
"errorhandler": "^1.5.1",
"eslint": "^8.10.0",
"eslint-config-google": "^0.14.0",
"husky": "^7.0.4",
"prettier": "^2.5.1"
},
"dependencies": {
"@node-redis/json": "^1.0.2",
"axios": "^0.26.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-graphql": "^0.12.0",
"fs": "^0.0.1-security",
"graphql": "^16.3.0",
"morgan": "^1.10.0",
"redis": "^4.0.4",
"serve-favicon": "^2.5.0",
"tslib": "^2.3.1"
}
}