-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.51 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
52
53
54
{
"name": "applications",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"engines": {
"node": ">=18.12.1"
},
"scripts": {
"start": "ts-node index.ts",
"watch": "nodemon index.ts",
"test": "jest --runInBand --detectOpenHandles --forceExit",
"test-w": "jest --watch",
"prepare": "husky install",
"prettier": "prettier --write .",
"lint": "eslint . --ext .ts",
"codegen": "graphql-codegen --config codgen.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.3.2",
"@graphql-tools/load-files": "^6.6.1",
"@graphql-tools/schema": "^9.0.14",
"@socket.io/admin-ui": "^0.5.1",
"apollo-server": "^3.11.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"graphql": "^16.6.0",
"mongoose": "^6.9.0",
"socket.io": "^4.6.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@graphql-codegen/cli": "3.2.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.33.0",
"husky": "^8.0.3",
"jest": "^29.4.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"@graphql-codegen/typescript": "3.0.1",
"@graphql-codegen/typescript-resolvers": "3.1.0",
"@graphql-codegen/typescript-mongodb": "2.4.6",
"@graphql-codegen/typescript-document-nodes": "3.0.1"
}
}