-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"name": "tempus-api-graphql",
"version": "0.5.2",
"description": "A GraphQL wrapper for the tempus api (tempus2.xyz)",
"main": "dist/schema.js",
"scripts": {
"test": "npm run build && jest",
"graphiql": "npm run build && node ./scripts/graphiql.js",
"dump-sdl": "npm run build && node ./scripts/dump_sdl.js",
"build": "babel lib -d dist",
"prepare": "npm run build",
"lint": "eslint .",
"format": "prettier . --write"
},
"keywords": [
"tempus",
"api",
"graphql"
],
"author": "Aris Poloway",
"type": "commonjs",
"license": "MIT",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/arispoloway/tempus-api-graphql.git"
},
"jest": {
"testPathIgnorePatterns": [
"lib"
]
},
"dependencies": {
"axios": "^0.21.1",
"graphql": "^15.3.0",
"lru-cache": "^6.0.0",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"express": "^4.17.1",
"express-graphql": "^0.11.0",
"jest": "^26.2.2",
"prettier": "^2.0.5"
}
}