-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.5 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.5 KB
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
{
"name": "graphql-ts-es-node-postgres-example",
"version": "0.0.1",
"description": "An example app using Node TypeScript Elasticsearch Postgres and GraphQL",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.1",
"@types/elasticsearch": "^5.0.32",
"@types/jest": "^24.0.12",
"@types/jsonwebtoken": "^8.3.2",
"@types/lodash": "^4.14.129",
"@types/node": "^9.6.6",
"@types/node-fetch": "^2.3.3",
"@types/uuid": "^3.4.4",
"@types/yup": "^0.26.13",
"gql2ts": "^1.10.1",
"graphql-request": "^1.8.2",
"graphql-type-datetime": "^0.2.3",
"jest": "^24.8.0",
"node-fetch": "^2.5.0",
"nodemon": "^1.17.3",
"ts-jest": "^24.0.2",
"ts-node": "6.0.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.12.0",
"typescript": "2.8.3"
},
"dependencies": {
"apollo-server": "^2.5.0",
"apollo-server-express": "^2.5.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.4",
"elasticsearch": "^16.0.0",
"express": "^4.16.4",
"graphql": "^14.3.0",
"graphql-import": "^0.7.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"pg": "^7.4.1",
"reflect-metadata": "^0.1.12",
"typeorm": "0.2.0",
"yup": "^0.27.0"
},
"scripts": {
"start": "NODE_ENV=development nodemon --exec ts-node src/index.ts",
"test": "NODE_ENV=test jest",
"test-watch": "NODE_ENV=test jest --watch --coverage",
"gen-schema-types": "gql2ts src/schema.graphql -o src/types/schema.d.ts"
}
}