-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.9 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"dev": "nodemon dist/index.js",
"start": "node dist/index.js",
"build": "tsc",
"watch": "tsc --watch",
"test": "mocha --exit --timeout 10000",
"coverage": "tsc && nyc --reporter=html --reporter=text --reporter=clover npm run test",
"lint": "eslint --fix --ignore-path .eslintignore --ext .ts .",
"format": "prettier --write src/ test/"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"eventsource": "^2.0.2",
"express": "^4.14.0",
"express-graphql": "^0.12.0",
"graphql": "^15.8.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.0.0",
"mongoose": "^7.5.2",
"morgan": "^1.10.0",
"node-fetch": "^2.7.0",
"socket.io": "^4.6.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/bcryptjs": "^2.4.4",
"@types/chai": "^4.3.6",
"@types/eventsource": "^1.1.12",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.9",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"chai": "^4.3.8",
"chai-http": "^4.4.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"mocha": "^10.2.0",
"node-html-parser": "^6.1.9",
"nyc": "^15.1.0",
"prettier": "3.0.3",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"optionalDependencies": {
"bufferutil": "^4.0.7",
"utf-8-validate": "^5.0.10"
}
}