-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "express-graphql-example",
"version": "3.0.0",
"main": "./dist/index.js",
"license": "MIT",
"dependencies": {
"@godaddy/terminus": "^4.12.1",
"aws-xray-sdk": "^3.10.2",
"cls-hooked": "^4.2.2",
"dataloader": "^2.0.0",
"express": "^5.0.1",
"graphql": "^16.0.1",
"graphql-http": "^1.17.1",
"knex": "^3.1.0",
"mysql2": "^3.2.0",
"uuid": "^11.0.2",
"winston": "^3.16.0"
},
"scripts": {
"build": "tsc",
"start": "tsc -w --preserveWatchOutput & nodemon -q -w dist dist/index.js",
"lint": "eslint . --ext .ts",
"test": "jest",
"migrate": "knex migrate:latest",
"seed": "knex seed:run"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/jest": "^27.0.1",
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^4.0.2",
"ts-jest": "^29.1.0",
"typescript": "^5.0.3"
},
"packageManager": "[email protected]"
}