-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) Β· 1.67 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
{
"name": "kami",
"version": "0.0.0",
"description": "helping you move information out of slack into notion.",
"engines": {
"node": ">= 16.13 <17"
},
"type": "commonjs",
"devDependencies": {
"@types/jest": "~29.1",
"@types/node": "~16",
"@types/node-fetch": "^2.6.2",
"@types/stopword": "^2.0.0",
"@typescript-eslint/eslint-plugin": "~5.39",
"@typescript-eslint/parser": "~5.39",
"concurrently": "^7.5.0",
"eslint": "~8.24",
"eslint-config-prettier": "~8.5",
"eslint-plugin-jest": "~27.1",
"jest": "~29.1",
"nodemon": "^2.0.20",
"prettier": "~2.7",
"rimraf": "~3.0",
"ts-jest": "~29.0",
"tsutils": "~3.21",
"typescript": "~4.8"
},
"scripts": {
"start": "node build/src/main.js",
"watch": "nodemon build/src/main.js",
"dev": "concurrently \"npm run build:watch\" \"npm run watch\"",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "NODE_ENV=test jest --coverage",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "NODE_ENV=test jest --watch"
},
"author": "Ali Waseem <[email protected]>",
"license": "MIT",
"dependencies": {
"@notionhq/client": "^2.2.2",
"@slack/bolt": "^3.12.2",
"@upstash/redis": "^1.16.0",
"body-parser": "^1.20.1",
"dotenv": "^16.0.3",
"node-fetch": "^2.6.7",
"openai": "^3.1.0",
"stopword": "^2.0.5",
"stripe": "^11.1.0",
"tslib": "~2.4",
"yup": "^0.32.11"
},
"volta": {
"node": "16.17.0"
}
}