-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.19 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
{
"name": "notion-imdb",
"version": "1.0.0",
"description": "An integration between Notion and TMDB",
"type": "module",
"main": "backend/dist/index.js",
"scripts": {
"lint": "eslint",
"format": "prettier --write .",
"build": "npm run build --workspaces && rm -rf dist && node --loader ts-node/esm support/build.ts",
"code:deploy": "cd dist && npm prune --workspace backend --omit dev && zip -r out.zip . && az functionapp deployment source config-zip -g notion-tmdb-fr -n notion-tmdb-fr --src out.zip",
"infra:deploy": "az deployment group create --mode complete -g notion-tmdb-fr -f azure/template.bicep"
},
"author": "[email protected]",
"license": "MIT",
"workspaces": [
"backend",
"frontend"
],
"dependencies": {
"copy-file": "^11.0.0",
"globby": "^14.0.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.17.0",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.3",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
}
}