minime/package.json
Tau 072d70b42a Migrate to SQLite3
We'll keep the door open for side-by-side support of Postgres in
the background, but due to SQLite's type system quirks we cannot
use the same DDL for both databases, so we would have to maintain
two sets of DDL (schema init and schema migration scripts) at once.

Interested future contributors can shoulder this maintenance burden
if they so choose.
2019-11-06 17:28:30 -05:00

52 lines
1.2 KiB
JSON

{
"name": "minime",
"version": "0.1.0",
"description": "Test server",
"main": "src/index.js",
"private": true,
"dependencies": {
"better-sqlite3": "^5.4.3",
"compression": "^1.7.3",
"date-fns": "^1.30.1",
"debug": "^4.1.1",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"iconv-lite": "^0.4.24",
"morgan": "^1.9.1",
"multiparty": "^4.2.1",
"raw-body": "^2.3.3",
"sql-bricks-postgres": "^0.5.0",
"supports-color": "^7.1.0"
},
"devDependencies": {
"@types/better-sqlite3": "^5.4.0",
"@types/compression": "^0.0.36",
"@types/debug": "^4.1.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/jest": "^24.0.11",
"@types/multiparty": "^0.0.32",
"@types/node": "^11.11.3",
"jest": "^24.5.0",
"jest-haste-map": "^24.5.0",
"jest-resolve": "^24.5.0",
"prettier": "^1.16.4",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.3",
"typescript": "^3.3.3333",
"utility-types": "^3.6.1"
},
"scripts": {
"build": "tsc",
"test": "jest",
"start": "ts-node src/index.ts"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"trailingComma": "es5"
}
}