-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.74 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
{
"name": "twinkle",
"version": "1.0.0",
"description": "Notification service",
"main": "index.js",
"repository": "https://github.com/bibendi/twinkle.js",
"author": "bibendi",
"license": "MIT",
"private": false,
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"afterEach",
"afterAll",
"it",
"expect",
"transactional"
]
},
"scripts": {
"start": "node -r esm index.js",
"dev": "nodemon --exec node -r esm -- index.js",
"debug": "nodemon --exec node -r esm --inspect=0.0.0.0:9229 -- index.js",
"console": "node -r esm --experimental-repl-await console.js",
"test": "env NODE_ENV=test mocha"
},
"dependencies": {
"apollo-server-core": "^2.9.7",
"apollo-server-koa": "^2.9.7",
"bcryptjs": "^2.4.3",
"dataloader": "^2.0.0",
"esm": "^3.2.25",
"graphql": "^14.5.8",
"graphql-depth-limit": "^1.1.0",
"graphql-middleware": "^4.0.2",
"graphql-shield": "^7.0.2",
"jsonwebtoken": "^8.5.1",
"koa": "^2.10.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"lodash": "^4.17.15",
"pg": "^7.12.1",
"sequelize": "^5.19.6",
"sequelize-cli": "^5.5.1",
"winston": "^3.2.1",
"yn": "^3.1.1"
},
"devDependencies": {
"apollo-server-integration-testing": "^2.2.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.7.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"faker": "^4.1.0",
"mocha": "^6.2.2",
"nodemon": "^1.19.3",
"rosie": "^2.0.1"
}
}