-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.63 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
{
"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": true,
"coveragePathIgnorePatterns": [
"/postgres",
"/image-server",
"/node_modules",
"/temp_convert",
"/docker",
"/coverage"
],
"watchPathIgnorePatterns": [
"/postgres",
"/image-server",
"/node_modules",
"/temp_convert",
"/docker",
"/coverage"
]
},
"keywords": [],
"author": "Bryan Robitaille - GCTools/OutilsGC",
"license": "AGPL-3.0-or-later",
"dependencies": {
"amqplib": "^0.5.3",
"apollo-server": "^2.14.2",
"apollo-server-express": "^2.15.1",
"cluster": "^0.7.7",
"codacy-coverage": "^3.4.0",
"dotenv": "^6.2.0",
"eslint": "^5.14.1",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"graphql": "^14.1.1",
"graphql-binding": "^2.5.0",
"graphql-import": "^1.0.2",
"http": "0.0.1-security",
"node-fetch": "^2.6.1",
"nodemailer": "^5.1.1",
"prisma": "^1.27.0",
"prisma-binding": "^2.3.3",
"request": "^2.88.0",
"shortid": "^2.2.14",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"jest": "^24.1.0",
"jest-html-reporter": "^2.4.4",
"ts-jest": "^23.10.5"
}
}