-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.65 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.65 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
{
"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": "Ioram Gordadze <Yoh0xFF@gmail.com>",
"license": "MIT",
"repository": "https://github.com/Yoh0xFF/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": {
"ajv-formats": "3.0.1",
"apollo-server-express": "3.13.0",
"bcrypt": "5.1.1",
"cookie-parser": "1.4.7",
"cors": "2.8.5",
"dataloader": "2.2.2",
"express": "4.21.2",
"graphql": "16.9.0",
"graphql-depth-limit": "1.1.0",
"graphql-middleware": "6.1.35",
"graphql-scalars": "1.23.0",
"graphql-shield": "7.6.5",
"graphql-tag": "2.12.6",
"http-errors": "2.0.0",
"knex": "3.1.0",
"jsonwebtoken": "9.0.2",
"lodash": "4.17.21",
"morgan": "1.10.0",
"objection": "3.1.5",
"password-validator": "5.3.0",
"sqlite3": "5.1.7",
"validator": "13.12.0",
"winston": "3.17.0"
},
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "7.26.0",
"@babel/node": "7.26.0",
"@babel/preset-env": "7.26.0",
"@graphql-tools/schema": "10.0.8",
"@graphql-tools/utils": "10.5.6",
"@jest/globals": "29.7.0",
"apollo-server-testing": "2.25.3",
"eslint": "8.26.0",
"jest": "29.7.0",
"nodemon": "3.1.7"
}
}