-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1000 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1000 Bytes
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
{
"name": "dapel",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"dev": "concurrently \"nodemon app.js\" \"npm run build:css\"",
"build:css": "npx @tailwindcss/cli -i ./src/input.css -o ./public/css/style.css --watch --minify"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@dicebear/collection": "^9.2.3",
"@dicebear/core": "^9.2.3",
"bcrypt": "^6.0.0",
"change-case": "^5.4.4",
"cookie-parser": "^1.4.7",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"hbs": "^4.2.0",
"mongoose": "^8.17.0",
"nanoid": "^5.1.5",
"validator": "^13.15.15",
"zod": "^4.0.17"
},
"devDependencies": {
"@tailwindcss/cli": "^4.1.11",
"@types/express": "^5.0.3",
"@types/validator": "^13.15.2",
"concurrently": "^9.2.1",
"nodemon": "^3.1.10",
"prettier-plugin-hbs": "^1.0.1",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.11"
}
}