-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "graphql-test",
"version": "1.0.0",
"description": "graphql development and testing",
"main": "index.js",
"scripts": {
"start": "ts-node -r tsconfig-paths/register index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "mocha './test/**/*.spec.ts' -r ts-node/register -r tsconfig-paths/register"
},
"keywords": [
"graphql",
"nodejs",
"supertest",
"typescript"
],
"author": "MD SADAB SAQIB",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.10.0",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"graphql": "^16.8.1"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/body-parser": "^1.19.6",
"@types/chai": "^5.2.2",
"@types/cors": "^2.8.19",
"@types/mocha": "^10.0.10",
"chai": "^4.0.1",
"eslint": "^9.35.0",
"globals": "^16.4.0",
"jiti": "^2.5.1",
"mocha": "^11.7.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0"
}
}