-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.84 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "profile_service",
"version": "1.0.0",
"description": "profile_service",
"main": "src/cluster.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "node src/cluster.js",
"dev": "PRISMA_API_ENDPOINT=localhost yarn prisma deploy && NODE_ENV=development node src/index.js",
"eslint": "eslint src/",
"test": "PRISMA_API_ENDPOINT=localhost yarn prisma deploy && NODE_ENV=development jest --runInBand --coverage"
},
"jest": {
"verbose": false,
"coveragePathIgnorePatterns": [
"/postgres",
"/image-server",
"/node_modules",
"/temp_convert",
"/docker",
"/coverage",
"fixtures",
"package.json"
],
"watchPathIgnorePatterns": [
"/postgres",
"/image-server",
"/node_modules",
"/temp_convert",
"/docker",
"/coverage"
]
},
"keywords": [],
"author": "Bryan Robitaille - GCTools/OutilsGC",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@elastic/elasticsearch": "^7.1.0",
"@okgrow/graphql-scalars": "^0.4.5",
"amqplib": "^0.5.3",
"apollo-server": "^2.4.2",
"cluster": "^0.7.7",
"codacy-coverage": "^3.4.0",
"dotenv": "^6.2.0",
"ejs": "^2.6.2",
"eslint": "^5.14.1",
"express-jwt": "^5.3.1",
"got": "^10.7.0",
"graphql": "^14.1.1",
"graphql-binding": "^2.5.0",
"graphql-middleware": "^3.0.2",
"graphql-type-json": "^0.3.2",
"node-fetch": "^2.3.0",
"parse-svg-path": "^0.1.2",
"prisma": "1.26.6",
"prisma-binding": "^2.3.2",
"request": "^2.88.0",
"sharp": "^0.23.2",
"shortid": "^2.2.14",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"faker": "^4.1.0",
"graphql-request": "^1.8.2",
"jest": "^23.6.0",
"jest-html-reporter": "^2.4.4",
"randomatic": "^3.1.1",
"ts-jest": "^23.10.5"
}
}