-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.15 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
{
"name": "node-api-logs",
"version": "1.1.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon --watch src --exec ts-node src/index.ts",
"build:css": "postcss src/views/styles/tailwind.css -o src/views/styles/tailwind.css"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": " A package to see logs on your nodejs server (expressjs)",
"homepage": "https://github.com/ugochukwudev/Node-API-LOGS",
"dependencies": {
"autoprefixer": "^10.4.20",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.6.0",
"nodemon": "^3.1.4",
"postcss": "^8.4.45",
"postcss-cli": "^11.0.0",
"tailwindcss": "^3.4.10"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/mongoose": "^5.11.97",
"@types/node": "^22.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}