{ "name": "server", "version": "0.0.1", "description": "SASjs server", "main": "./src/index.ts", "scripts": { "start": "nodemon ./src/index.ts", "build": "tsc --project ./", "semantic-release": "semantic-release -d", "postinstall": "[ -d .git ] && git config core.hooksPath ./.git-hooks || true", "lint:fix": "npx prettier --write \"src/**/*.{ts,tsx,js,jsx,html,css,sass,less,yml,md,graphql}\"", "lint": "npx prettier --check \"src/**/*.{ts,tsx,js,jsx,html,css,sass,less,yml,md,graphql}\"" }, "author": "Analytium", "dependencies": { "express": "^4.17.1" }, "devDependencies": { "@types/express": "^4.17.12", "@types/node": "^15.12.2", "nodemon": "^2.0.7", "prettier": "^2.3.1", "semantic-release": "^17.4.3", "ts-node": "^10.0.0", "typescript": "^4.3.2" } }