forked from kriasoft/graphql-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.2 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.2 KB
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
35
36
37
38
39
{
"name": "db",
"version": "0.0.0",
"license": "MIT",
"author": "Kriasoft (https://github.com/kriasoft)",
"scripts": {
"version": "knex migrate:currentVersion",
"change": "knex migrate:make",
"migrate": "knex migrate:latest",
"rollback": "knex migrate:rollback",
"seed": "knex seed:run",
"reset": "node ./scripts/reset",
"backup": "node ./scripts/backup",
"restore": "node ./scripts/restore",
"repl": "node --experimental-repl-await ./scripts/repl",
"psql": "node ./scripts/psql",
"db:version": "yarn workspace db version",
"db:change": "yarn workspace db change",
"db:migrate": "yarn workspace db migrate",
"db:rollback": "yarn workspace db rollback",
"db:seed": "yarn workspace db seed",
"db:reset": "yarn workspace db reset",
"db:backup": "yarn workspace db backup",
"db:restore": "yarn workspace db restore",
"db:repl": "yarn workspace db repl",
"db:psql": "yarn workspace db psql"
},
"devDependencies": {
"cross-spawn": "^7.0.3",
"env": "workspace:*",
"faker": "^4.1.0",
"knex": "^0.21.5",
"minimist": "^1.2.5",
"nanoid": "^3.1.12",
"pg": "^8.3.2",
"prettier": "^2.0.5"
},
"private": true
}