| 1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "name": "relay-control",
- "version": "0.1.0",
- "description": "IoT Relay Control Application",
- "main": "app.js",
- "scripts": {
- "start": "node server/app.js",
- "dev": "concurrently \"npm run start\" \"npm run serve\"",
- "serve": "vue-cli-service serve --port 8080",
- "build": "vue-cli-service build",
- "lint": "eslint --ext .js,.vue src",
- "test": "jest"
- },
- "dependencies": {
- "axios": "^1.6.2",
- "bcrypt": "^5.1.1",
- "body-parser": "^1.20.2",
- "cors": "^2.8.5",
- "express": "^4.18.2",
- "jsonwebtoken": "^9.0.2",
- "mqtt": "^5.0.3",
- "mysql2": "^3.6.0",
- "vue": "^3.3.0",
- "vue-router": "^4.2.5",
- "winston": "^3.17.0"
- },
- "devDependencies": {
- "@vue/cli-plugin-babel": "^5.0.8",
- "@vue/cli-plugin-eslint": "^5.0.8",
- "@vue/cli-service": "^5.0.8",
- "concurrently": "^9.1.2",
- "eslint": "^8.56.0",
- "eslint-plugin-vue": "^9.17.0",
- "install": "^0.13.0",
- "jest": "^29.7.0",
- "nodemon": "^3.0.2"
- }
- }
|