-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
28 lines (28 loc) · 979 Bytes
/
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",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"nango-integrations"
],
"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 nangohq/server . && docker build -f packages/worker/Dockerfile -t nangohq/worker ."
},
"devDependencies": {
"@tsconfig/node18-strictest-esm": "^1.0.0",
"@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"
},
"version": "0.0.1"
}