-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 888 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
{
"name": "express_ejs_tailwind_autoreload",
"version": "1.0.0",
"description": "Tailwind 3 With Node, Express And EJS Starter ",
"main": "app.js",
"scripts": {
"start": "nodemon app.js -e ejs",
"watch": "nodemon --ext js,ejs",
"dev": "concurrently \"nodemon --ext js,ejs\" \"npx tailwindcss -i ./assets/tailwind.css -o ./assets/app.css --watch\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "goldalworming",
"license": "ISC",
"dependencies": {
"connect-livereload": "^0.6.1",
"ejs": "^3.1.6",
"express": "^4.17.2",
"fs-jetpack": "^4.3.1",
"js-yaml": "^4.1.0",
"livereload": "^0.9.3",
"uglify-js": "^3.16.3"
},
"devDependencies": {
"autoprefixer": "^10.4.11",
"concurrently": "^7.4.0",
"nodemon": "^2.0.15",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8"
}
}