-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "anomolyserver",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development ts-node-dev --exit-child --respawn src/main.ts",
"start": "ts-node src/main.ts",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "2.4.2",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "9.0.1",
"@types/node": "^18.14.2",
"@types/ws": "^8.5.4",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@apollo/server": "^4.4.0",
"@graphql-tools/schema": "^9.0.17",
"apollo-server-core": "^3.11.1",
"bcrypt": "^5.1.0",
"bcryptjs": "2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"graphql-middleware": "^6.1.33",
"graphql-scalars": "^1.20.4",
"graphql-subscriptions": "^2.0.0",
"graphql-tag": "^2.12.6",
"graphql-ws": "^5.12.0",
"graphql-yoga": "3.7.0",
"jsonwebtoken": "9.0.0",
"mongodb": "^5.1.0",
"ts-node": "^10.9.1",
"ws": "^8.13.0"
}
}