forked from juffalow/express-graphql-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 992 Bytes
/
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
{
"name": "express-graphql-example",
"version": "3.0.0",
"main": "./dist/index.js",
"license": "MIT",
"dependencies": {
"dataloader": "^2.0.0",
"express": "^4.16.4",
"express-graphql": "^0.9.0",
"graphql": "15.3.0",
"knex": "^0.21.1",
"mysql2": "^2.1.0"
},
"scripts": {
"build": "tsc",
"start": "tsc -w & nodemon -q -w dist dist/index.js",
"lint": "eslint . --ext .ts",
"test": "jest",
"migrate": "knex migrate:latest",
"seed": "knex seed:run"
},
"devDependencies": {
"@types/express": "^4.17.3",
"@types/jest": "^26.0.3",
"@types/node": "^13.9.2",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^7.0.0",
"jest": "^26.1.0",
"nodemon": "^2.0.4",
"supertest": "^4.0.2",
"ts-jest": "^26.1.1",
"typescript": "^4.0.2"
}
}