-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 802 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "app-pg",
"description": "Sample project using sync-db",
"scripts": {
"lint": "eslint src/index.js",
"lint:fix": "eslint --fix src/index.js",
"synchronize": "../../bin/run-dev.sh synchronize",
"clean": "../../bin/run-dev.sh prune",
"migrate:list": "../../bin/run-dev.sh migrate-list",
"migrate": "../../bin/run-dev.sh migrate-latest",
"rollback": "../../bin/run-dev.sh migrate-rollback",
"start": "node src/index.js",
"make": "knex --knexfile=knexfile.js migrate:make"
},
"license": "MIT",
"dependencies": {
"@leapfrogtechnology/sync-db": "^2.0.0",
"knex": "^2.4.2",
"pg": "^8.5.1",
"ts-node": "^9.1.1",
"typescript": "^5.0.4"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-leapfrog": "^2.0.1"
}
}