-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 1.87 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
{
"name": "graph",
"version": "1.0.0",
"description": "GraphQL API for Requarks projects",
"scripts": {
"start": "node server",
"dev": "nodemon -V --delay 1",
"test": "eslint --ext .js ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Requarks/graph.git"
},
"keywords": [
"api",
"graphql"
],
"author": "Nicolas Giard",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/Requarks/graph/issues"
},
"homepage": "https://github.com/Requarks/graph#readme",
"dependencies": {
"apollo-server-express": "2.9.16",
"auto-load": "3.0.4",
"bluebird": "3.7.2",
"body-parser": "1.19.0",
"bunyan": "1.8.12",
"compression": "1.7.4",
"cookie-parser": "1.4.4",
"cors": "2.8.5",
"country-language": "0.1.7",
"cron": "1.7.2",
"custom-error-instance": "2.1.1",
"express": "4.17.1",
"fs-extra": "8.1.0",
"graphql": "14.5.8",
"graphql-rate-limit-directive": "1.2.0",
"ioredis": "4.14.1",
"js-yaml": "3.13.1",
"knex": "0.20.8",
"lodash": "4.17.15",
"moment": "2.24.0",
"pg": "7.17.1",
"pug": "2.0.4",
"request": "2.88.0",
"request-promise": "4.2.5",
"semver": "7.1.1",
"serve-favicon": "2.5.0",
"uuid": "3.4.0",
"validator": "12.1.0",
"yargs": "15.1.0"
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"graphql-schema-linter": "0.2.3",
"graphql-tag": "2.10.1",
"nodemon": "2.0.2"
},
"engines": {
"node": ">=10.15.3"
},
"nodemonConfig": {
"exec": "node ./server --dev | bunyan -o short",
"ext": "js json graphql",
"watch": [
"server/"
],
"env": {
"NODE_ENV": "development"
}
}
}