forked from NangoHQ/nango
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.1 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
{
"name": "@nangohq/nango",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"prettier-format": "prettier --config .prettierrc './**/*.ts' --write",
"prettier-watch": "onchange './**/*.ts' -- prettier --write {{changed}}",
"lint": "eslint . --ext .ts",
"docker-build": "docker build -f packages/server/Dockerfile -t nango.docker.scarf.sh/nangohq/nango-server:latest .",
"ts-build": "./node_modules/typescript/bin/tsc -b --clean packages/server packages/cli && ./node_modules/typescript/bin/tsc -b tsconfig.build.json",
"build": "npm run ts-build && npm run docker-build"
},
"dependencies": {},
"devDependencies": {
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@types/node": "^18.7.6",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"onchange": "^7.1.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}