-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.03 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "notion-database-crawler",
"version": "1.0.0",
"description": "",
"keywords": [],
"homepage": "https://github.com/75asa/notion-database-crawler#readme",
"bugs": {
"url": "https://github.com/75asa/notion-database-crawler/issues"
},
"license": "MIT",
"author": "75asa",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/75asa/notion-database-crawler.git"
},
"scripts": {
"ts-node": "ts-node",
"test": "jest",
"dev": "ts-node -r tsconfig-paths/register --files src/index.ts",
"dev:watch": "ts-node-dev --respawn -r tsconfig-paths/register --files src/index.ts",
"start": "node dist/index.js",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
"lint-fix": "yarn lint --fix && prettier --write \"./{__tests__,src}/**/*.{js,ts}\"",
"build": "tsc -p . --project tsconfig.json && tsc-alias -p tsconfig.json",
"postinstall": "yarn build",
"generate": "yarn prisma generate",
"migrate": "yarn prisma migrate dev",
"migrate:reset": "yarn prisma migrate reset",
"migrate:deploy": "yarn prisma migrate deploy",
"deploy": "tsc . && node dist/index.js"
},
"dependencies": {
"@notionhq/client": "^0.4.9",
"@prisma/client": "3.0.2",
"@sentry/node": "^6.13.3",
"@sentry/tracing": "^6.13.3",
"@slack/web-api": "^6.4.0",
"dayjs": "^1.10.6",
"dotenv": "^10.0.0",
"jsx-slack": "^4.3.0",
"shallow-equal-object": "^1.1.1",
"toad-scheduler": "^1.5.0",
"tsc-alias": "^1.4.1"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.2.3",
"prettier": "^2.4.1",
"prisma": "3.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.4.2"
},
"engines": {
"yarn": "1.*",
"node": ">=16.x"
}
}