forked from CodingButter-LLC/directus-migrator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.05 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
{
"name": "directus-migrator",
"version": "1.4.19",
"description": "",
"main": "dist/index.js",
"bin": {
"directus-migrator": "bin/cli.js"
},
"scripts": {
"build": "npx tsc",
"migrate:dev:prod": "node bin/index.js -f -s development - t production",
"migrate:dev:staging": "node bin/index.js -f -s development -t staging",
"migrate:staging:prod": "node bin/index.js -f -s staging -t production",
"mds": "node bin/index.js -f -s development -t staging",
"mdp": "node bin/index.js -f -s development -t production",
"mps": "node bin/index.js -f -s production -t staging",
"msp": "node bin/index.js -f -s staging -t production"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"args-parser": "^1.3.0",
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1",
"figlet": "^1.6.0",
"prompts": "^2.4.2",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/figlet": "^1.5.5",
"@types/node": "^18.15.11",
"logform": "^2.5.1",
"typescript": "^5.0.4"
}
}