UNPKG

opniz-server

Version:
108 lines (107 loc) 2.94 kB
{ "name": "opniz-server", "version": "0.0.6", "description": "opniz server", "keywords": [ "opniz", "obniz", "m5stack", "m5atom", "esp32" ], "license": "MIT", "homepage": "https://github.com/miso-develop/opniz", "repository": { "type": "git", "url": "https://github.com/miso-develop/opniz-server.git" }, "bugs": "https://github.com/miso-develop/opniz-server/issues", "author": "Miso Tanaka <miso.develop@gmail.com>", "main": "dist/index.js", "engines": { "node": ">=12.x" }, "files": [ "dist" ], "private": false, "scripts": { "node": "node dist", "n": "npm run node", "nodemon": "nodemon --watch dist dist/index.js", "nm": "npm run nodemon", "prepare": "npm run build && npx husky install", "prestart": "npm run build", "start": "npm run node", "s": "npm start", "clean": "npx rimraf dist", "c": "npm run clean", "prebuild:prod": "npm run clean", "prebuild:dev": "npm run clean", "prebuild": "npm run clean", "build:prod": "npx tsc --sourceMap false --declarationMap false", "build:dev": "npx tsc", "build": "npm run build:dev", "bp": "npm run build:prod", "bd": "npm run build:dev", "b": "npm run build", "watch": "npm run build:dev -- --watch", "w": "npm run watch", "lint": "npx eslint {src,tests,examples}/**/*.{ts,js}", "l": "npm run lint", "lint:fix": "npx eslint --fix {src,tests,examples}/**/*.{ts,js}", "lf": "npm run lint:fix", "test": "npx jest", "t": "npm test", "test:coverage": "npm test -- --coverage", "tc": "npm run test:coverage", "test:watch": "npm test -- --watch", "tw": "npm run test:watch", "predoc": "npx rimraf docs", "doc": "npx typedoc src --out docs --readme none --exclude \"./src/**/example.ts\" --gitRevision main --entryPointStrategy expand", "open:coverage": "npx opener chrome ./coverage/lcov-report/index.html", "oc": "npm run open:coverage", "open:doc": "npx opener chrome ./docs/index.html", "od": "npm run open:doc", "update": "npm ci && run-p build:prod test doc", "u": "npm run update", "": "" }, "lint-staged": { "{src,tests,examples}/**/*.{ts,js}": [ "eslint --fix", "git add" ] }, "dependencies": { "chalk": "^4.1.2", "dayjs": "^1.10.3", "socket.io": "^4.4.0" }, "devDependencies": { "@types/eslint": "^4.16.6", "@types/jest": "^27.0.3", "@types/node": "^14.14.20", "@typescript-eslint/eslint-plugin": "^5.3.1", "@typescript-eslint/parser": "^5.3.1", "esbuild": "^0.17.4", "esbuild-jest": "^0.5.0", "esbuild-jest-transform": "^1.1.1", "eslint": "^7.32.0", "eslint-plugin-jest": "^24.1.3", "get-port": "^5.1.1", "glob": "^7.2.0", "husky": "^5.1.3", "ip": "^1.1.5", "jest": "^27.3.1", "lint-staged": "^13.2.1", "npm-run-all": "^4.1.5", "opener": "^1.5.2", "rimraf": "^3.0.2", "socket.io-client": "^4.4.0", "source-map-support": "^0.5.20", "ts-jest": "^27.0.7", "typedoc": "^0.22.11", "typescript": "^4.2.3" } }