-
Notifications
You must be signed in to change notification settings - Fork 443
/
package.json
88 lines (88 loc) · 4.5 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
{
"name": "@nangohq/nango",
"type": "module",
"version": "0.39.32",
"workspaces": [
"packages/*",
"scripts"
],
"scripts": {
"create:migration": "cd packages/database/lib && knex migrate:make $1 --esm --knexfile ./knexfile.cjs",
"undo:migration": "cd packages/database/lib && knex migrate:rollback --esm --knexfile ./knexfile.cjs",
"prettier-format": "prettier --config .prettierrc \"./**/*.{ts,tsx}\" --write",
"prettier-watch": "onchange './**/*.{ts,tsx}' -- prettier --write {{changed}}",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"ts-build": "tsc -b tsconfig.build.json",
"ts-build:docker": "tsc -b tsconfig.docker.json",
"ts-clean": "npx rimraf packages/*/tsconfig.tsbuildinfo packages/*/dist",
"docker-build": "docker build -f packages/server/Dockerfile -t nango-server:latest .",
"webapp-build:hosted": "cd ./packages/webapp && npm run build:hosted && cd ../..",
"webapp-build:staging": "cd ./packages/webapp && npm run build:staging && cd ../..",
"webapp-build:prod": "cd ./packages/webapp && npm run build:prod && cd ../..",
"webapp-build:enterprise": "cd ./packages/webapp && npm run build:enterprise && cd ../..",
"webapp-build:watch": "tsc -b -w packages/webapp/tsconfig.json",
"docker-build:unified": "./scripts/build_docker.sh",
"build:hosted": "npm ci && npm run ts-build && npm run webapp-build:hosted && npm run connect-ui:build",
"build:staging": "npm ci && npm run ts-build && npm run webapp-build:staging",
"build:prod": "npm ci && npm run ts-build && npm run webapp-build:prod",
"build:enterprise": "npm ci && npm run ts-build && npm run webapp-build:enterprise",
"server:dev:watch": "cd ./packages/server && npm run dev",
"jobs:dev:watch": "npm run dev -w @nangohq/nango-jobs",
"persist:dev:watch": "npm run dev -w @nangohq/nango-persist",
"orchestrator:dev:watch": "npm run dev -w @nangohq/nango-orchestrator",
"webapp:dev:watch": "cd ./packages/webapp && npm run start:local",
"connect-ui:dev:watch": "cd ./packages/connect-ui && npm run dev",
"connect-ui:build": "npm run -w @nangohq/connect-ui build",
"prepare": "husky install",
"build:watch": "tsc -b -w --preserveWatchOutput tsconfig.build.json",
"dev:watch": "npm run -w nango copy:files && npm run build:watch",
"watch:dev": "npm run dev:watch",
"dev:watch:apps": "concurrently --names 'srv,web,job,prs,orc,con' --kill-others \"npm run server:dev:watch\" \"npm run webapp:dev:watch\" \"npm run jobs:dev:watch\" \"npm run persist:dev:watch\" \"npm run orchestrator:dev:watch\" \"npm run connect-ui:dev:watch\"",
"watch:dev:apps": "npm run dev:watch:apps",
"dw": "npm run dev:watch",
"dwa": "npm run dev:watch:apps",
"test": "concurrently --kill-others \"npm run test:unit\" \"npm run test:integration\" \"npm run test:cli\"",
"test:unit": "vitest",
"test:integration": "vitest --config ./vite.integration.config.ts",
"test:cli": "vitest --config ./vite.cli.config.ts",
"test:openapi": "npx @apidevtools/swagger-cli validate docs-v2/spec.yaml",
"test:providers": "npx tsx scripts/validation/providers/validate.ts",
"docs": "cd ./docs-v2 && npx mintlify dev --port 3033",
"nango": "cd ./packages/server && npm run nango",
"dev:docker": "docker compose --file dev/docker-compose.dev.yaml up -d"
},
"devDependencies": {
"@tsconfig/node18-strictest-esm": "1.0.1",
"@types/node": "20.12.2",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"concurrently": "8.2.2",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"lint-staged": "15.2.9",
"onchange": "7.1.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"testcontainers": "9.12.0",
"tsx": "4.19.0",
"typescript": "5.3.3",
"vitest": "1.6.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,cjs}": [
"eslint --fix --quiet"
],
"*.{html,css,json,yaml}": [
"prettier --write"
]
},
"engines": {
"node": ">=18.0.0 || >=20.0.0"
}
}