-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "k-project-bff",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "node build/index.js",
"build": "tsc --project tsconfig.build.json",
"dev": "nodemon src/index.ts",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@graphql-tools/schema": "^8.5.1",
"apollo-server-core": "^3.10.0",
"apollo-server-express": "^3.8.2",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"graphql": "^16.5.0",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.9.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.6",
"ts-node": "^10.8.1",
"ws": "^8.8.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.42",
"@types/ws": "^8.5.3",
"jest": "^28.1.3",
"nodemon": "^2.0.16",
"ts-jest": "^28.0.7",
"typescript": "^4.7.3"
}
}