Files
directus/package.json
2020-06-26 13:40:29 -04:00

98 lines
2.6 KiB
JSON

{
"name": "api-node",
"version": "0.0.1",
"description": "The Directus API in Node.js",
"main": "dist/server.js",
"scripts": {
"start": "NODE_ENV=production node dist/server.js",
"build": "rimraf dist && tsc && copyfiles \"src/**/*.*\" -e \"src/**/*.ts\" -u 1 dist",
"dev": "LOG_LEVEL=trace ts-node-dev src/server.ts --clear --watch \"src/**/*.ts\" --rs --transpile-only | pino-colada"
},
"repository": {
"type": "git",
"url": "git+https://github.com/directus/api-node.git"
},
"keywords": [
"directus",
"api",
"headless",
"database",
"cms",
"dam",
"crm"
],
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/directus/api-node/issues"
},
"homepage": "https://github.com/directus/api-node#readme",
"devDependencies": {
"@types/atob": "^2.1.2",
"@types/bcrypt": "^3.0.0",
"@types/busboy": "^0.2.3",
"@types/express": "^4.17.6",
"@types/express-pino-logger": "^4.0.2",
"@types/express-session": "^1.17.0",
"@types/hapi__joi": "^17.1.2",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.156",
"@types/nodemailer": "^6.4.0",
"@types/pino": "^6.3.0",
"@types/uuid": "^8.0.0",
"copyfiles": "^2.3.0",
"eslint": "^7.3.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.10",
"pino-colada": "^1.6.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write"
]
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@slynova/flydrive": "^1.0.1",
"@slynova/flydrive-gcs": "^1.0.1",
"@slynova/flydrive-s3": "^1.0.1",
"atob": "^2.1.2",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"busboy": "^0.3.1",
"camelcase": "^6.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-pino-logger": "^5.0.0",
"express-session": "^1.17.1",
"get-port": "^5.1.1",
"grant": "^5.2.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.1",
"knex-schema-inspector": "github:knex/knex-schema-inspector",
"liquidjs": "^9.12.0",
"lodash": "^4.17.15",
"mssql": "^6.2.0",
"mysql": "^2.18.1",
"nodemailer": "^6.4.10",
"oracledb": "^4.2.0",
"pg": "^8.2.1",
"pino": "^6.3.2",
"sqlite3": "^4.2.0",
"ts-node-dev": "^1.0.0-pre.49",
"uuid": "^8.2.0"
}
}