-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 858 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
{
"name": "ejs-expr-tailwindcss",
"version": "0.0.0",
"private": true,
"main": "app.js",
"scripts": {
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www",
"tailwind:css": "postcss public/stylesheets/tailwind.css -o public/stylesheets/style.css",
"tailwind:watch": "postcss public/stylesheets/tailwind.css -o public/stylesheets/style.css --watch",
"app": "concurrently \"nodemon app.js\" \"npm run tailwind:watch\""
},
"dependencies": {
"autoprefixer": "^10.4.20",
"axios": "^1.3.2",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"ejs": "~2.6.1",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"postcss": "^8.4.41",
"postcss-cli": "^11.0.0",
"tailwindcss": "^3.4.8"
},
"devDependencies": {
"concurrently": "^8.2.2",
"nodemon": "^3.1.4"
}
}