-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 991 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
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "vibez-homie",
"version": "1.0.0",
"description": "The homie with the #vibez.",
"private": true,
"repository": "[email protected]:hackclub/vibez-homie.git",
"author": "Zachary Fogg <[email protected]>",
"license": "MIT",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"type": "commonjs",
"module": "dist",
"exports": {
"import": "./index.esm.mjs",
"require": "./dist/index.js"
},
"files": [
"index.esm.mjs",
"dist"
],
"scripts": {
"build": "npx tsc",
"start": "npx nodemon dist/index.js",
"dev": "npx ts-node-dev --rs --transpile-only --watch=src src/index.ts"
},
"dependencies": {
"@slack/bolt": "^3.2.0",
"@types/node": "^14.14.28",
"airtable": "^0.10.1",
"airtable-plus": "^1.0.4",
"dotenv": "^8.2.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"tslib": "^2.1.0"
},
"devDependencies": {
"prettier": "^2.2.1",
"ts-node-dev": "^1.1.6"
}
}