-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
137 lines (137 loc) · 4.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "forest-cli",
"description": "The Lumberjacks' toolbelt is the Forest CLI which makes easy to manage your back office application directly from the terminal.",
"version": "5.2.1",
"author": "Sandro Munda",
"contributors": [
"Arnaud Valensi <[email protected]>",
"Vincent Molinié <[email protected]>",
"David Routhieau <[email protected]>",
"Arnaud Besnier <[email protected]>",
"Guillaume Gautreau <[email protected]>"
],
"bin": {
"forest": "./bin/run"
},
"bugs": "https://github.com/ForestAdmin/toolbelt/issues",
"dependencies": {
"@forestadmin/context": "1.37.1",
"@forestadmin/datasource-sql": "1.14.31",
"@oclif/core": "3.18.2",
"@oclif/plugin-help": "6.0.12",
"@oclif/plugin-not-found": "3.0.10",
"@oclif/plugin-warn-if-update-available": "3.0.19",
"app-root-path": "3.0.0",
"atob": "2.1.2",
"bluebird": "3.5.2",
"chalk": "4.1.2",
"cli-table": "0.3.6",
"clipboardy": "2.3.0",
"commander": "2.9.0",
"dotenv": "8.2.0",
"handlebars": "4.7.7",
"inquirer": "6.2.0",
"joi": "17.12.2",
"json-diff": "1.0.0",
"jsonapi-serializer": "3.6.2",
"jsonwebtoken": "9.0.2",
"jwt-decode": "2.2.0",
"lodash": "4.17.21",
"mkdirp": "1.0.4",
"mongodb": "4.17.2",
"mysql2": "3.9.8",
"open": "7.3.0",
"openid-client": "4.2.2",
"pg": "8.11.2",
"pluralize": "8.0.0",
"progress": "2.0.3",
"saslprep": "1.0.3",
"sequelize": "6.37.5",
"spinnies": "0.5.1",
"stdout-stderr": "0.1.13",
"superagent": "8.1.2",
"tedious": "16.7.1",
"uuid": "8.0.0",
"validate-npm-package-name": "3.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@swc/core": "1.3.34",
"@swc/jest": "0.2.24",
"@types/jest": "27.0.2",
"@types/lodash": "4.14.191",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-oclif": "3.1.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "25.2.2",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-sonarjs": "0.5.0",
"fs-extra": "8.1.0",
"git-hooks": "1.1.10",
"husky": "7.0.2",
"jest": "27.3.1",
"lint-staged": "12.3.7",
"mock-stdin": "1.0.0",
"nock": "13.5.0",
"oclif": "4.10.11",
"prettier": "2.8.3",
"rimraf": "3.0.2",
"semantic-release": "19.0.3",
"semantic-release-slack-bot": "3.5.2",
"tsc-watch": "6.0.0",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/dist"
],
"homepage": "https://github.com/ForestAdmin/toolbelt",
"keywords": [
"forestadmin"
],
"license": "GPL-3.0",
"main": "dist/index.js",
"oclif": {
"commands": "./dist/commands",
"bin": "forest",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available",
"@oclif/plugin-not-found"
],
"warn-if-update-available": {
"timeoutInDays": 7,
"message": "<%= config.name %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>.",
"registry": "https://www.npmjs.com/package/forest-cli"
},
"hooks": {
"init": [
"./dist/hooks/init/check-compatible-node-version"
]
}
},
"repository": "ForestAdmin/toolbelt",
"scripts": {
"lint": "eslint src test",
"prepare": "husky install",
"prepack": "yarn build && oclif manifest && oclif readme",
"postpack": "rm -f oclif.manifest.json",
"build": "tsc",
"build:watch": "tsc-watch --onSuccess 'yarn postbuild'",
"test": "jest --runInBand",
"test:coverage": "jest --runInBand --coverage",
"postbuild": "mkdir -p ./dist/services/dumpers/templates && cp -R src/services/dumpers/templates dist/services/dumpers/"
}
}