-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 996 Bytes
/
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
{
"name": "chattgator-backend",
"version": "1.0.0",
"description": "backend repo",
"main": "index.js",
"scripts": {
"dev": "nodemon --experimental-modules --es-module-specifier-resolution=node index.js",
"start": "node --experimental-modules --es-module-specifier-resolution=node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChattGator/backend.git"
},
"keywords": [
"node",
"express",
"socket"
],
"author": "chattgator-team",
"license": "ISC",
"bugs": {
"url": "https://github.com/ChattGator/backend/issues"
},
"homepage": "https://github.com/ChattGator/backend#readme",
"dependencies": {
"auto-bind": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"firebase-admin": "^11.0.1",
"mongoose": "^6.5.2",
"morgan": "^1.10.0",
"nanoid": "^4.0.0",
"socket.io": "^4.5.1"
},
"type": "module",
"devDependencies": {
"nodemon": "^2.0.19"
}
}