-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.66 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
45
46
47
48
49
50
51
{
"name": "node-graphql-code-test",
"packageManager": "[email protected]+sha512.68046141893c66fad01c079231128e9afb89ef87e2691d69e4d40eee228988295fd4682181bae55b58418c3a253bde65a505ec7c5f9403ece5cc3cd37dcf2531",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"dev": "nodemon --inspect --watch \".\" --watch \".swcrc\" --ext \"ts,js,mjs,json,md,sh,zsh,env\" --exec \"node -r @swc-node/register\" src/server.ts",
"start": "node dist/server.js",
"build": "swc src -d dist",
"test": "jest",
"typecheck": "tsc --noEmit",
"prepare-hooks": "chmod +x scripts/install-hooks.zsh && ./scripts/install-hooks.zsh",
"prepare": "pnpm prepare-hooks"
},
"author": "mattfsourcecode",
"dependencies": {
"@graphql-tools/utils": "^10.8.6",
"dotenv": "^16.4.7",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"graphql": "^16.10.0",
"graphql-tag": "^2.12.6",
"graphql-yoga": "^5.13.2",
"helmet": "^8.1.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@jest/types": "^29.6.3",
"@swc-node/register": "^1.10.10",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.11.16",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/morgan": "^1.9.9",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^9.23.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"license-checker": "^25.0.1",
"nodemon": "^3.1.9",
"supertest": "^7.1.0",
"ts-jest": "^29.3.1",
"typescript": "^5.8.2",
"typescript-eslint": "^8.29.0"
}
}