This repository has been archived by the owner on Jun 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.58 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "mongo-yoga",
"version": "0.0.1",
"description": "GraphQL-YOGA Example with mongodb",
"main": "src/index.js",
"scripts": {
"test": "TZ=utc NODE_ENV=development ava tests/integration/**/*.js --verbose",
"test:content-remove": "TZ=utc NODE_ENV=development ava tests/integration/article/content/delete.content.test.js --verbose",
"test:content-move": "TZ=utc NODE_ENV=development ava tests/integration/article/content/move_copy_paste.content.test.js --verbose",
"test:content-create": "TZ=utc NODE_ENV=development ava tests/integration/article/content/create.content.test.js --verbose",
"test:content-update": "TZ=utc NODE_ENV=development ava tests/integration/article/content/update.content.test.js --verbose",
"test:file-crud": "TZ=utc NODE_ENV=development ava tests/integration/file/file.test.js --verbose",
"test:content-file-ref": "TZ=utc NODE_ENV=development ava tests/integration/article/content/fileReference.content.test.js --verbose",
"test:tag": "TZ=utc NODE_ENV=development ava tests/integration/tag/tag.test.js --verbose",
"test:page-template": "TZ=utc NODE_ENV=development ava tests/integration/pageTemplate/pageTemplate.test.js --verbose",
"test:article-tags": "TZ=utc NODE_ENV=development ava tests/integration/article/article-tags.test.js --verbose",
"test:article-files": "TZ=utc NODE_ENV=development ava tests/integration/article/article-files.test.js --verbose",
"test:article": "TZ=utc NODE_ENV=development ava tests/integration/article/article.test.js --verbose",
"test:user": "TZ=utc NODE_ENV=development ava tests/integration/user/signup.test.js --verbose",
"test:watch": "TZ=utc NODE_ENV=development ava tests/**/*.js --verbose --watch",
"dev": "TZ=utc NODE_ENV=development nodemon -e js,json,graphql,gql src/index.js",
"serve": "TZ=utc NODE_ENV=development node src/index.js",
"serve-brk": "TZ=utc NODE_ENV=development node src/index.js --inspect-brk",
"start": "TZ=utc NODE_ENV=production node src/index.js",
"lint": "eslint --ext .js --ignore-path .gitignore src",
"format": "find src -name '*.js' | xargs -I{} ./node_modules/.bin/prettier --write --single-quote {}"
},
"keywords": [
"gql",
"yoga",
"mongodb",
"lumen-cms"
],
"author": "Dominic Garms <[email protected]>",
"license": "MIT",
"dependencies": {
"aws-sdk": "2.370.0",
"bcryptjs": "^2.4.3",
"deep-rename-keys": "^0.2.1",
"dotenv": "6.1.0",
"graphql": "14.0.2",
"graphql-iso-date": "3.6.1",
"graphql-shield": "4.1.0",
"graphql-tools": "4.0.3",
"graphql-type-json": "^0.2.1",
"graphql-yoga": "1.16.7",
"jsonwebtoken": "8.4.0",
"lodash.get": "^4.4.2",
"lodash.pick": "^4.4.0",
"merge-graphql-schemas": "1.5.8",
"mongodb": "3.1.10",
"probe-image-size": "^4.0.0",
"request": "2.88.0",
"slugify": "1.3.3"
},
"devDependencies": {
"ava": "1.0.0-rc.2",
"eslint": "5.9.0",
"eslint-plugin-ava": "5.1.1",
"eslint-plugin-node": "8.0.0",
"graphql-request": "1.8.2",
"graphql-tag": "2.10.0",
"nodemon": "1.18.7"
},
"engines": {
"node": ">=8.0.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:node/recommended"
],
"plugins": [
"ava",
"node"
],
"rules": {
"no-console": 0,
"no-unused-vars": 0,
"node/exports-style": [
"error",
"module.exports"
]
}
},
"ava": {
"files": [
"tests/integration/**/*.test.js"
]
},
"nodemonConfig": {
"ignore": [
"tests/*",
"graphql.config.json"
],
"delay": "2500"
}
}