-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 738 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 738 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
{
"name": "My Beautiful Gallery",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"build-css": "npx tailwindcss -i ./public/css/tailwind.css -o ./public/css/main.css --watch",
"start": "npm run build-css & nodemon server.js"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.2",
"autoprefixer": "^10.4.7",
"postcss": "^8.4.14",
"tailwindcss": "^3.0.24"
},
"dependencies": {
"chalk": "^5.0.1",
"color-thief-node": "^1.0.4",
"ejs": "^3.1.8",
"express": "^4.18.1",
"image-size": "^1.0.1",
"image-url-validator": "^1.0.4",
"node-fetch": "^3.2.6",
"nodemon": "^2.0.16",
"probe-image-size": "^7.2.3",
"request-image-size": "^2.2.0"
}
}