1234567891011121314151617181920212223242526272829 |
- {
- "name": "wifistick-rest",
- "type": "module",
- "version": "1.0.0",
- "description": "",
- "main": "index.js",
- "scripts": {
- "test": "echo \"Error: no test specified\" && exit 1",
- "build": "tsc",
- "start": "yarn build && node build/app.js"
- },
- "husky": {
- "hooks": {
- "pre-commit": "prettier --write src/* **/*.json"
- }
- },
- "keywords": [],
- "author": "",
- "license": "ISC",
- "devDependencies": {
- "@types/express": "^4.17.14",
- "husky": "^8.0.1",
- "prettier": "^2.7.1",
- "typescript": "^4.8.4"
- },
- "dependencies": {
- "express": "^4.18.2"
- }
- }
|