-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 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
{
"name": "project",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"dev:css": "tailwindcss -i ./public/css/tailwind.css -o ./public/css/style.css --watch",
"dev:server": "cross-env DEBUG=app:* nodemon app.js",
"dev": "concurrently \"npm run dev:css\" \"npm run dev:server\"",
"start": "node app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"autoprefixer": "^10.4.21",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"nodemon": "^3.1.10",
"postcss": "^8.5.4",
"tailwindcss": "^3.4.17"
},
"dependencies": {
"axios": "^1.9.0",
"bcrypt": "^6.0.0",
"config": "^4.0.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.7",
"debug": "^4.4.1",
"dotenv": "^16.5.0",
"ejs": "^3.1.10",
"express": "^5.1.0",
"express-rate-limit": "^7.5.1",
"express-session": "^1.18.1",
"helmet": "^8.1.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.15.1",
"multer": "^2.0.1",
"node-fetch": "^3.3.2"
}
}