-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.28 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.28 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
{
"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 .",
"prettier:check": "prettier --check ./src",
"prettier:write": "prettier --write ./src",
"test": "jest",
"migrate": "knex migrate:latest",
"seed": "knex seed:run"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/express": "^5.0.0",
"@types/jest": "^27.0.1",
"@types/node": "^24.10.4",
"eslint": "^9.39.2",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^3.8.1",
"supertest": "^4.0.2",
"ts-jest": "^29.1.0",
"typescript": "^5.0.3",
"typescript-eslint": "^8.54.0"
},
"packageManager": "yarn@4.12.0"
}