-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.06 KB
/
package.json
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
28
29
30
31
32
33
34
{
"name": "knex-migrations",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"knex:init": "knex init -x ts",
"knex:run": "knex --knexfile src/knexfile.ts",
"migrate:currentVersion": "npm run knex:run -- migrate:currentVersion",
"migrate:list": "npm run knex:run -- migrate:list",
"migrate:make": "npm run knex:run -- migrate:make --",
"migrate:latest": "npm run knex:run -- migrate:latest --debug",
"migrate:rollback": "npm run knex:run -- migrate:rollback --all --debug",
"seed:make": "npm run knex:run -- seed:make --",
"seed:run": "npm run knex:run -- seed:run --debug"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"knex": "^0.21.21",
"pg": "^8.7.1",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
},
"devDependencies": {
"@types/node": "^16.4.13",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.0"
}
}