mirror of
https://github.com/directus/directus.git
synced 2026-01-24 19:47:58 -05:00
63 lines
1.4 KiB
JSON
63 lines
1.4 KiB
JSON
{
|
|
"name": "api-node",
|
|
"version": "0.0.1",
|
|
"description": "The Directus API in Node.js",
|
|
"main": "dist/server.js",
|
|
"scripts": {
|
|
"start": "node dist/server.js",
|
|
"build": "tsc",
|
|
"dev": "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/express": "^4.17.6",
|
|
"@types/pino": "^6.3.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"husky": "^4.2.5",
|
|
"lint-staged": "^10.2.10",
|
|
"pino-colada": "^1.6.1",
|
|
"prettier": "^2.0.5",
|
|
"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": {
|
|
"express": "^4.17.1",
|
|
"mssql": "^6.2.0",
|
|
"mysql": "^2.18.1",
|
|
"oracledb": "^4.2.0",
|
|
"pg": "^8.2.1",
|
|
"pino": "^6.3.2",
|
|
"sqlite3": "^4.2.0",
|
|
"ts-node-dev": "^1.0.0-pre.49"
|
|
}
|
|
}
|