-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.85 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
66
67
68
69
70
71
72
{
"name": "taskapp-node-api",
"version": "1.0.0",
"description": "Simple task app node api with express",
"author": "Jaykobpc <watenga.jacob@gmail.com>",
"main": "src/server.ts",
"scripts": {
"dev": "nodemon src/server.ts",
"prod": "nodemon dist/server.js",
"prod:build": "npx tsc",
"lint": "eslint --ext .js,.ts ./",
"format": "prettier --write \"**/*.{js,ts,scss,html,md,json}\" --ignore-path .gitignore"
},
"keywords": [
"Express",
"NodeJS",
"Postgres"
],
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.0",
"express-rate-limit": "^7.4.0",
"helmet": "^8.0.0",
"hpp": "^0.2.3",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.11.4",
"pg": "^8.13.0",
"pg-hstore": "^2.3.4",
"reflect-metadata": "^0.2.2",
"request-ip": "^3.3.0",
"sequelize": "^6.37.3",
"sequelize-typescript": "^2.1.6",
"sharp": "^0.33.5",
"typescript": "^5.6.2",
"uuid": "^10.0.0",
"winston": "^3.14.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.0",
"@types/hpp": "^0.2.6",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.7.4",
"@types/request-ip": "^0.0.41",
"@types/uuid": "^10.0.0",
"eslint": "^9.11.1",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"sequelize-cli": "^6.6.2",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=20",
"npm": ">=10.2.4",
"yarn": "use npm"
}
}