-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 868 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 868 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
{
"name": "starter-express-api",
"version": "1.0.0",
"description": "",
"license": "MIT",
"main": "index.js",
"type": "module",
"scripts": {
"dev:server": "nodemon index.js -e html,js,json",
"dev:css": "tailwindcss -i ./public/styles/tailwind.css -o ./public/styles/main.css --watch",
"dev": "concurrently \"npm run dev:*\"",
"build": "tailwindcss -i ./public/styles/tailwind.css -o ./public/styles/main.css",
"start": "npm run build && node index.js"
},
"dependencies": {
"buffer-image-size": "^0.6.4",
"cors": "^2.8.5",
"daisyui": "^2.27.0",
"express": "^4.17.1",
"flowbite": "^1.5.3",
"helmet": "^6.0.0",
"multer": "^1.4.5-lts.1",
"nunjucks": "^3.2.3",
"pdfkit": "^0.13.0"
},
"devDependencies": {
"concurrently": "^7.4.0",
"nodemon": "^2.0.19",
"tailwindcss": "^3.1.8"
}
}