-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 743 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 743 Bytes
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
{
"name": "chat",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js --ignore client/"
},
"author": "Moge",
"license": "ISC",
"dependencies": {
"@graphql-tools/schema": "^9.0.4",
"apollo-server": "^3.10.2",
"apollo-server-core": "^3.10.2",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"graphql": "^16.6.0",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.10.1",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.3",
"sequelize": "^6.21.6",
"ws": "^8.8.1"
},
"devDependencies": {
"nodemon": "^2.0.19"
}
}