This repository was archived by the owner on Jan 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.24 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.24 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "graphql-blog.api",
"version": "1.0.0",
"description": "GraphQL basics from the-modern-graphql-bootcamp",
"main": "src/index.js",
"scripts": {
"dev": "nodemon src/index.js --exec babel-node --ext js,graphql",
"test": "env-cmd -f ./.env.testing jest --runInBand --forceExit",
"test-ci": "env-cmd -f ./.env.testing jest --runInBand --forceExit --coverage --coverageDirectory='./report'",
"test-watch": "env-cmd -f ./.env.testing jest --watch --runInBand",
"build": "babel ./src --out-dir ./dist --copy-files",
"production": "node dist/index.js",
"get-schema": "graphql get-schema -p 'GraphQLBlog'"
},
"jest": {
"globalSetup": "./tests/jest/globalSetup.js",
"globalTeardown": "./tests/jest/globalTeardown.js",
"setupFiles": [
"./tests/jest/setupClient.js"
],
"setupFilesAfterEnv": [
"./tests/jest/clearDatabase.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/rdok/graphql-blog.api/"
},
"keywords": [
"graphql",
"nodejs",
"docker",
"apollo",
"auth",
"jenkins"
],
"author": "Rizart Dokollari",
"license": "MIT",
"devDependencies": {
"@babel/node": "^7.7.4",
"apollo-boost": "^0.4.4",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.13",
"apollo-link-error": "^1.1.12",
"apollo-link-ws": "^1.0.19",
"apollo-utilities": "^1.3.2",
"babel-register": "^6.26.0",
"cross-fetch": "^3.0.4",
"env-cmd": "^10.0.1",
"faker": "^4.1.0",
"graphql": "^14.5.8",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"subscriptions-transport-ws": "^0.9.16"
},
"dependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-proposal-throw-expressions": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.4",
"@babel/runtime": "^7.7.4",
"bcryptjs": "^2.4.3",
"graphql-cli": "^3.0.14",
"graphql-yoga": "^1.18.3",
"jsonwebtoken": "^8.5.1",
"prisma": "^1.34.10",
"prisma-binding": "^2.3.16",
"validator": "^13.7.0"
}
}