forked from NangoHQ/nango
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.13 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
{
"name": "nango",
"version": "0.28.2",
"description": "Nango's CLI tool.",
"type": "module",
"main": "dist/index.js",
"bin": "./dist/index.js",
"types": "dist/nango-sync.d.ts",
"keywords": [],
"author": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/NangoHQ/nango",
"directory": "packages/cli"
},
"license": "SEE LICENSE IN LICENSE FILE IN GIT REPOSITORY",
"scripts": {
"build": "tsc",
"copyfiles": "copyfiles -u 1 lib/*.ejs dist",
"postbuild": "npm run copyfiles",
"dev": "npm run copyfiles && tsc -w"
},
"dependencies": {
"@babel/traverse": "^7.22.5",
"@inquirer/prompts": "^2.3.0",
"@nangohq/shared": "0.28.2",
"@vercel/ncc": "^0.36.1",
"axios": "^1.2.0",
"byots": "^5.0.0-dev.20221103.1.34",
"chokidar": "^3.5.3",
"commander": "^10.0.1",
"copyfiles": "^2.4.1",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"esbuild": "^0.17.19",
"figlet": "^1.6.0",
"js-yaml": "^4.1.0",
"memfs": "^3.5.1",
"npm-package-arg": "^10.1.0",
"ora": "^6.3.1",
"promptly": "^3.2.0",
"semver": "^7.5.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@types/babel__traverse": "^7.20.1",
"@types/babel-traverse": "^6.25.7",
"@types/commander": "^2.12.2",
"@types/ejs": "^3.1.2",
"@types/figlet": "^1.5.6",
"@types/glob": "^8.1.0",
"@types/node": "^20.1.4",
"@types/npm-package-arg": "^6.1.1",
"@types/promptly": "^3.0.2",
"babel-loader": "^9.1.2",
"webpack": "^5.85.1",
"webpack-cli": "^5.1.3",
"webpack-node-externals": "^3.0.0"
},
"engines": {
"node": ">=16.7"
},
"files": [
"dist/**/*",
"docker/docker-compose.yaml",
"tsconfig.dev.json",
"!**/*.json",
"README.md"
]
}