-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (61 loc) · 2.12 KB
/
package.json
File metadata and controls
64 lines (61 loc) · 2.12 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
{
"name": "graphql-example",
"description": "Sample project demonstrating common issues to consider when working on GraphQL API",
"version": "1.0.0",
"main": "dist/app.js",
"author": "tenwiz <nethe0002@gmail.com>",
"license": "MIT",
"repository": "https://github.com/tenwiz/graphql-example",
"scripts": {
"migrate": "knex migrate:latest && knex seed:run",
"watch": "export DEBUG=knex:query && npm run migrate && nodemon --exec babel-node src/app.js",
"build": "babel src --out-dir dist --copy-files",
"serve": "npm run build && npm run migrate && node dist/app.js",
"test": "npm run migrate && jest -i"
},
"dependencies": {
"apollo-server-express": "2.6.9",
"bcrypt": "3.0.6",
"cookie-parser": "1.4.4",
"cors": "2.8.5",
"dataloader": "1.4.0",
"express": "4.17.1",
"graphql": "14.4.2",
"graphql-depth-limit": "1.1.0",
"graphql-iso-date": "3.6.1",
"graphql-middleware": "3.0.2",
"graphql-shield": "6.0.3",
"graphql-tag": "2.10.1",
"graphql-tools": "4.0.5",
"http-errors": "1.7.3",
"jsonwebtoken": "8.5.1",
"knex": "0.19.0",
"lodash": "4.17.19",
"morgan": "1.9.1",
"objection": "1.6.9",
"password-validator": "4.1.1",
"sqlite3": "4.0.9",
"validator": "11.1.0",
"winston": "3.2.1"
},
"devDependencies": {
"@babel/cli": "7.5.0",
"@babel/core": "7.5.4",
"@babel/node": "7.5.0",
"@babel/plugin-proposal-class-properties": "7.5.0",
"@babel/polyfill": "7.4.4",
"@babel/preset-env": "7.5.5",
"apollo-server-testing": "2.6.9",
"babel-eslint": "10.0.2",
"babel-jest": "24.8.0",
"babel-plugin-dynamic-import-node-babel-7": "2.0.7",
"eslint": "6.1.0",
"eslint-config-standard": "13.0.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.0",
"jest": "24.8.0",
"nodemon": "1.19.1"
}
}