|
3 | 3 | "version": "1.0.0", |
4 | 4 | "license": "MIT", |
5 | 5 | "engines": { |
6 | | - "node": "14.18.1", |
7 | | - "yarn": "1.22.5" |
| 6 | + "node": "16.15.1", |
| 7 | + "yarn": "1.22.19" |
8 | 8 | }, |
9 | 9 | "scripts": { |
10 | 10 | "dev": "nodemon server/server.ts", |
11 | 11 | "lint": "eslint . --ext .ts,.tsx", |
12 | 12 | "test": "jest", |
13 | 13 | "postinstall": "rm -rf production-server/", |
14 | | - "build": "tsc --project tsconfig.server.json", |
| 14 | + "build": "tsc --project tsconfig.json", |
15 | 15 | "start": "node production-server/server.js" |
16 | 16 | }, |
17 | 17 | "jest": { |
|
22 | 22 | "testEnvironment": "node" |
23 | 23 | }, |
24 | 24 | "dependencies": { |
25 | | - "aws-sdk": "^2.796.0", |
26 | | - "bcrypt": "^5.0.0", |
| 25 | + "aws-sdk": "^2.1286.0", |
| 26 | + "bcrypt": "^5.1.0", |
27 | 27 | "compression": "^1.7.4", |
28 | | - "connect-mongo": "^3.2.0", |
| 28 | + "connect-mongo": "^4.6.0", |
29 | 29 | "cors": "^2.8.5", |
30 | | - "dotenv": "^8.2.0", |
31 | | - "express": "^4.17.1", |
32 | | - "express-session": "^1.17.1", |
| 30 | + "dotenv": "^16.0.3", |
| 31 | + "express": "^4.18.2", |
| 32 | + "express-session": "^1.17.3", |
33 | 33 | "he": "^1.2.0", |
34 | | - "helmet": "4.1.0-rc.2", |
35 | | - "highlight.js": "^10.5.0", |
36 | | - "lodash": "^4.17.20", |
37 | | - "marked": "^4.0.16", |
38 | | - "mongoose": "^6.3.5", |
| 34 | + "helmet": "6.0.1", |
| 35 | + "highlight.js": "^11.7.0", |
| 36 | + "lodash": "^4.17.21", |
| 37 | + "marked": "^4.2.5", |
| 38 | + "mongoose": "^6.8.2", |
39 | 39 | "node-fetch": "^2.6.1", |
40 | 40 | "passport": "^0.6.0", |
41 | 41 | "passport-google-oauth": "^2.0.0", |
42 | 42 | "passwordless": "^1.1.3", |
43 | 43 | "passwordless-tokenstore": "^0.0.10", |
44 | | - "socket.io": "^4.2.0", |
45 | | - "stripe": "^8.129.0", |
46 | | - "typescript": "^4.7.3", |
47 | | - "winston": "^3.3.3" |
| 44 | + "socket.io": "^4.5.4", |
| 45 | + "stripe": "^11.5.0", |
| 46 | + "typescript": "^4.9.4", |
| 47 | + "winston": "^3.8.2" |
48 | 48 | }, |
49 | 49 | "devDependencies": { |
50 | 50 | "@types/connect-mongo": "^3.1.3", |
51 | 51 | "@types/dotenv": "^8.2.0", |
52 | | - "@types/express": "^4.11.1", |
53 | | - "@types/express-session": "^1.15.8", |
54 | | - "@types/jest": "^22.2.3", |
55 | | - "@types/lodash": "^4.14.108", |
56 | | - "@types/marked": "^4.0.3", |
57 | | - "@types/mongoose": "^5.5.43", |
58 | | - "@types/node": "^12.12.2", |
59 | | - "@types/node-fetch": "^1.6.9", |
60 | | - "@types/passport": "^1.0.8", |
| 52 | + "@types/express": "^4.17.15", |
| 53 | + "@types/express-session": "^1.17.5", |
| 54 | + "@types/jest": "^29.2.5", |
| 55 | + "@types/lodash": "^4.14.191", |
| 56 | + "@types/marked": "^4.0.8", |
| 57 | + "@types/mongoose": "^5.11.97", |
| 58 | + "@types/node": "^18.11.18", |
| 59 | + "@types/node-fetch": "^2.6.2", |
| 60 | + "@types/passport": "^1.0.11", |
61 | 61 | "@types/socket.io": "^3.0.2", |
62 | | - "@typescript-eslint/eslint-plugin": "^4.2.0", |
63 | | - "@typescript-eslint/parser": "^4.2.0", |
64 | | - "eslint": "^7.25.0", |
65 | | - "eslint-config-prettier": "^7.1.0", |
66 | | - "eslint-plugin-prettier": "^3.3.1", |
67 | | - "jest": "^26.4.2", |
68 | | - "nodemon": "^2.0.7", |
69 | | - "prettier": "^2.2.1", |
70 | | - "ts-jest": "^26.4.4", |
71 | | - "ts-node": "^10.8.1" |
| 62 | + "@typescript-eslint/eslint-plugin": "^5.47.1", |
| 63 | + "@typescript-eslint/parser": "^5.47.1", |
| 64 | + "eslint": "^8.31.0", |
| 65 | + "eslint-config-prettier": "^8.5.0", |
| 66 | + "eslint-plugin-prettier": "^4.2.1", |
| 67 | + "jest": "^29.3.1", |
| 68 | + "nodemon": "^2.0.20", |
| 69 | + "prettier": "^2.8.1", |
| 70 | + "ts-jest": "^29.0.3", |
| 71 | + "ts-node": "^10.9.1" |
72 | 72 | } |
73 | 73 | } |
0 commit comments