-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "elasticsearch-graphql",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rimraf dist && ts-node scripts/generateNexusTypes.ts && tsc -d",
"lint":
"tslint --project tsconfig.json {src,test}/**/*.ts && prettier-check --ignore-path .gitignore {src,.}/{*.ts,*.js}",
"format": "prettier --write --ignore-path .gitignore {src,.}/{*.ts,*.js}",
"generate": "ts-node scripts/generateNexusTypes.ts"
},
"keywords": [],
"authors": [
{
"name": "Cedric Hurst",
"email": "[email protected]",
"url": "https://www.spantree.net"
}
],
"license": "MIT",
"dependencies": {
"@elastic/elasticsearch": "^7.3.0",
"graphql": "^14.5.3",
"graphql-parse-resolve-info": "^4.4.3",
"lodash": "^4.17.15",
"nexus": "^0.12.0-beta.7"
},
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/glob": "^7.1.1",
"@types/lodash": "^4.14.138",
"apollo-boost": "^0.4.4",
"apollo-client": "^2.6.4",
"apollo-server-express": "^2.9.0",
"cross-fetch": "^3.0.4",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"glob": "^7.1.4",
"node": "^12.9.1",
"prettier": "^1.18.2",
"prettier-check": "^2.0.0",
"rimraf": "^3.0.0",
"ts-node": "^8.3.0",
"ts-node-dev": "^1.0.0-pre.42",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.6.2",
"yarn": "^1.17.3"
}
}