-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
{
"name": "node-chat-assignment",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "ts-node src/index.ts",
"lint": "eslint 'src/**/*.{js,ts}'",
"lint:fix": "eslint 'src/**/*.{js,ts}' --fix",
"prettier": "prettier --write 'src/**/*.{js,ts,json,md}'",
"prettier:check": "prettier --check 'src/**/*.{js,ts,json,md}'",
"test": "jest"
},
"dependencies": {
"axios": "^1.7.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongoose": "^7.5.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.47.0",
"jest": "^29.7.0",
"prettier": "^3.0.1",
"supertest": "^7.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=16.0.0"
},
"author": "Brian Kiremu",
"license": "MIT"
}