-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.95 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
63
64
65
{
"name": "affword-backend-assignment",
"version": "1.0.0",
"description": "Backend assignment for Affword",
"main": "/src/index.ts",
"license": "MIT",
"scripts": {
"start": "nodemon",
"test": "jest --coverage --verbose",
"test:watch": "jest --watch",
"lint:fix": "eslint --fix .",
"lint:check": "eslint --ext .",
"prettier:fix": "prettier --write .",
"prettier:check": "prettier --check .",
"fix": "yarn lint:fix && yarn prettier:fix"
},
"dependencies": {
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.0.0",
"crypto": "^1.0.1",
"express": "^4.18.2",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"passport": "^0.7.0",
"passport-google-oauth2": "^0.2.0",
"pg": "^8.11.5",
"socket.io": "^4.7.5"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.6",
"@types/cookie-session": "^2.0.48",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash": "^4.14.202",
"@types/node": "^20.9.3",
"@types/passport": "^1.0.16",
"@types/passport-google-oauth2": "^0.1.8",
"@types/pg": "^8.11.6",
"@types/socket.io": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
},
"volta": {
"node": "18.17.0",
"yarn": "1.21.1"
},
"repository": "https://github.com/sahsisunny/basic-backend.git",
"author": "Sunny Sahsi <[email protected]>"
}