forked from juffalow/express-graphql-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 996 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": "^16.0.1",
"knex": "^0.95.4",
"mysql2": "^2.1.0"
},
"scripts": {
"build": "tsc",
"start": "tsc-watch --onSuccess 'node ./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": "^27.0.1",
"@types/node": "^16.3.1",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"jest": "^27.2.0",
"supertest": "^4.0.2",
"ts-jest": "^27.0.5",
"tsc-watch": "^4.6.0",
"typescript": "^4.0.2"
}
}