-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.17 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
42
43
44
{
"name": "node-graphql-code-test",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"dev": "nodemon --inspect --watch \"src/**/*.ts\" --exec \"node -r @swc-node/register\" src/server.ts",
"start": "node dist/server.js",
"build": "swc src -d dist",
"test": "jest"
},
"author": "mattfsourcecode",
"dependencies": {
"@graphql-tools/utils": "^10.7.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"graphql": "^16.10.0",
"graphql-tag": "^2.12.6",
"graphql-yoga": "^5.10.8",
"helmet": "^7.2.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@jest/types": "^29.6.3",
"@swc-node/register": "^1.10.9",
"@swc/cli": "^0.1.65",
"@swc/core": "^1.10.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/morgan": "^1.9.9",
"@types/supertest": "^6.0.2",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.18.2"
}
}