-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1.11 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
{
"name": "nango-sample-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "Nango",
"license": "MIT",
"type": "module",
"workspaces": [
"front-end",
"back-end"
],
"scripts": {
"lint": "eslint .",
"dev": "npm run start:docker && concurrently -n front,back \"npm run dev -w front-end\" \"npm run dev -w back-end\"",
"start": "npm run start:docker && concurrently -n front,back \"npm run dev -w front-end\" \"npm run start -w back-end\"",
"start:docker": "docker compose up -d",
"start:backend": "npm run -w back-end start",
"webhooks-proxy": "lt --port 3010"
},
"devDependencies": {
"@tsconfig/node18-strictest-esm": "1.0.1",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@typescript-eslint/parser": "6.12.0",
"concurrently": "8.2.2",
"dotenv-cli": "7.4.1",
"eslint": "8.57.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",
"localtunnel": "2.0.2",
"prettier": "3.2.5"
}
}