-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 861 Bytes
/
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
{
"name": "supercalendar",
"version": "1.0.0",
"description": "a super cool timesheet app with super functions",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"build": "pkg .",
"watch:css": "tailwindcss -i ./index.css -o ./public/css/index.css --watch",
"build:css": "tailwindcss -i ./index.css -o ./public/css/index.css"
},
"author": "Ayham",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.0",
"convert-time": "^0.3.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-validator": "^6.14.2",
"ip": "^1.1.8",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"mongoose": "^6.8.4",
"nodemon": "^2.0.20",
"open": "^8.4.0"
},
"devDependencies": {
"tailwindcss": "^3.2.4"
}
}