grow/package.json
David Westgate 8a22a15f86
All checks were successful
Plant Growing Automation / deploy (push) Successful in 6s
fix tsc
2025-04-24 12:03:42 -07:00

26 lines
703 B
JSON

{
"dependencies": {
"@roamhq/wrtc": "0.8.0",
"node-dht-sensor": "^0.4.5",
"node-pre-gyp": "^0.17.0",
"pigpio": "^3.3.1",
"sass": "1.86.3",
"serialport": "^13.0.0",
"ws": "^8.18.0"
},
"scripts": {
"build:scss": "npx sass src/static/css:dist/static/css",
"copy:html": "cp src/static/*.* dist/static",
"build": "npx tsc && npm run build:scss && npm run copy:html",
"start": "npm run build && node dist/server.js",
"dev": "npm run build && npx ts-node src/server.ts"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/node-dht-sensor": "^0.4.2",
"@types/ws": "^8.5.13",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}