-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.51 KB
/
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
34
35
36
37
38
39
40
41
42
{
"name": "temperature-esp8266",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "https://github.com/siddhsuresh/ArduinoVoiceTempControlled.git"
},
"license": "GPL-3.0 License",
"private": true,
"description": "Testing Using Socket IO and Express JS Backend",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-static-gzip": "^2.1.7",
"socket.io": "^4.7.3",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@parcel/compressor-brotli": "^2.11.0",
"@parcel/compressor-gzip": "^2.11.0",
"@parcel/packager-raw-url": "^2.11.0",
"@parcel/transformer-webmanifest": "^2.11.0",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.16",
"daisyui": "^4.5.0",
"parcel": "^2.11.0",
"postcss": "^8.4.33",
"reveal.js": "^5.0.4",
"sharp": "^0.33.1",
"tailwindcss": "^4.0.0"
},
"scripts": {
"tailwind-dev": "npx tailwindcss -o ./src/public/css/tailwind.css --watch",
"parcel-dev": "parcel watch src/index.html src/project.html src/slides.html src/home.html",
"tailwind-build": "npx tailwindcss -o ./src/public/css/tailwind.css --minify",
"parcel-build": "parcel build src/index.html src/project.html src/slides.html src/home.html",
"server": "node server.js",
"serve": "cloudflared tunnel -url localhost:3000"
},
"packageManager": "[email protected]"
}