-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 969 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": "flowbite-express",
"version": "1.0.0",
"description": "Flowbite on Express",
"main": "app.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"start:dev": "nodemon app.js --ext js,json,ejs,hbs,pug",
"tailwind:css": "npx tailwindcss -i ./public/styles/tailwind.css -o ./public/styles/style.css --watch",
"start:tailwind": "concurrently \"npm run tailwind:css\" \"npm run start:dev\""
},
"keywords": [],
"repository": "https://github.com/shinokada/flowbite-express",
"author": "Shinichi Okada",
"license": "MIT",
"private": false,
"dependencies": {
"ejs": "^3.1.8",
"express": "^4.18.2",
"flowbite": "^1.6.1"
},
"devDependencies": {
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"nodemon": "^2.0.20",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"tailwindcss": "^3.2.4"
}
}