generated from makenotion/notion-sdk-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 899 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
29
{
"name": "notion-sdk-project",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"typecheck": "tsc --noEmit",
"build": "rm -rf dist/* && tsc",
"deploy": "npm run build && cp package.json package-lock.json .env dist/ && npm run updateYC",
"updateYC": "yc serverless function version create --function-name=alisa-shopping-list --runtime=nodejs16 --entrypoint=index.handler --source-path dist/",
"format": "prettier --write src/**/*.ts"
},
"keywords": [],
"author": "",
"dependencies": {
"@notionhq/client": "^2.2.1",
"dotenv": "^16.0.3"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^18.11.4",
"prettier": "^2.7.1",
"ts-node": "^10.8.2",
"typescript": "^4.8.4"
}
}