-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1.24 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
35
36
37
38
{
"name": "kontent-migrations-boilerplate",
"version": "3.0.0",
"description": "Boilerplate with migration samples",
"main": "index.ts",
"type": "module",
"scripts": {
"migrate:all": "tsc && data-ops migrations run --configFile ./migrationsParams.json --all",
"migrate:range": "tsc && data-ops migrations run --configFile ./migrationsParams.json --range",
"migrate:next": "tsc && data-ops migrations run --configFile ./migrationsParams.json --next",
"migrate": "tsc && data-ops migration run --configFile ./migrationsParams.json -n",
"migration:add": "data-ops migrations add --migrationsFolder=./src -n",
"data-ops": "data-ops",
"lint": "eslint \"src/*.ts\"",
"lint:fix": "eslint --fix \"src/*.ts\"",
"fmt": "dprint fmt",
"fmt:check": "dprint check",
"build": "tsc"
},
"keywords": [
"migrations",
"kontent",
"cli"
],
"author": "Kontent s.r.o.",
"license": "MIT",
"dependencies": {
"@kontent-ai/data-ops": "^1.5.0",
"@kontent-ai/management-sdk": "^7.2.0",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@kontent-ai/eslint-config": "^1.0.0",
"@types/node": "^20.14.10",
"dprint": "^0.47.1",
"typescript": "^5.5.3"
}
}