-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1021 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1021 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
32
33
34
35
36
37
38
39
40
41
{
"name": "taskmaster-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-graphql": "^0.12.0",
"graphql": "^15.10.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.14.3",
"socket.io": "^4.8.1",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.18",
"@types/express": "^5.0.2",
"@types/express-graphql": "^0.8.2",
"@types/graphql": "^14.2.3",
"@types/jsonwebtoken": "^9.0.9",
"@types/mongoose": "^5.11.96",
"@types/node": "^22.15.21",
"@types/socket.io": "^3.0.1",
"nodemon": "^3.1.10",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}