-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.01 KB
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
66
{
"name": "nodejs-typescript-template",
"version": "1.321.0",
"description": "A template for a nodejs application, using typescript",
"main": "dist/src/index.js",
"author": "",
"license": "MIT",
"scripts": {
"dev": "nodemon ./src/app.ts",
"build": "tsc",
"start:prod": "node dist/app.js",
"start:dev": "ts-node src/app.ts",
"lint": "eslint --fix --quiet src/**/*.ts",
"format": "prettier --loglevel silent --write src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@types/cors": "^2.8.17",
"@types/multer": "^1.4.11",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cluster": "^0.7.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "4.17.3",
"express-list-routes": "^1.2.2",
"express-rate-limit": "^7.4.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.2",
"multer": "^1.4.5-lts.1",
"pg": "^8.12.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.3",
"sequelize-cli": "^6.6.2",
"sequelize-typescript": "^2.1.6",
"short-unique-id": "^5.2.0",
"socket.io": "^4.7.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "9.x",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.8.0",
"jest": "^29.7.0",
"nodemon": "^3.1.3",
"prettier": "^3.3.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.18.0",
"typescript-eslint-parser": "^22.0.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}