generated from tryretool/retool-github-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.94 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
{
"name": "retool-cli",
"version": "1.0.29",
"description": "CLI for Retool",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"retool": "./lib/index.js"
},
"scripts": {
"dev": "tsc --watch -p .",
"build": "npm run clean && tsc -p . && npm run copy-files && chmod +x lib/index.js",
"clean": "rimraf lib/",
"copy-files": "copyfiles -u 1 src/**/*.html lib/",
"lint": "npx eslint ./src",
"lint-fix": "npm run lint -- --fix",
"test": "jest",
"test-silent": "jest --silent",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tryretool/retool-cli.git"
},
"bugs": {
"url": "https://github.com/tryretool/retool-cli/issues"
},
"homepage": "https://github.com/tryretool/retool-cli#readme",
"dependencies": {
"@faker-js/faker": "^8.0.2",
"@inquirer/prompts": "^5.2.0",
"@napi-rs/keyring": "^1.1.3",
"axios": "^1.4.0",
"chalk": "^4.1.2",
"connection-string-parser": "^1.0.4",
"csv-parser": "^3.0.0",
"date-fns": "^2.30.0",
"express": "^4.18.2",
"inquirer": "^8.0.0",
"inquirer-tree-prompt": "^1.1.2",
"open": "^7.4.2",
"ora": "^5.4.1",
"pg": "^8.11.3",
"puppeteer": "^20.8.0",
"tar": "^6.1.15",
"untildify": "^4.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@types/express": "^4.17.17",
"@types/intl": "^1.2.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.2.5",
"@types/tar": "^6.1.5",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"copyfiles": "^2.4.1",
"eslint": "^8.44.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"jest": "^29.6.2",
"nodemon": "^2.0.22",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}