-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 769 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 769 Bytes
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
{
"name": "liked-in",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"dev": "tsc -w & nodemon dist/app.js",
"generate-docs": "typedoc --options typedoc.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.7.5",
"@types/sqlite3": "^3.1.11",
"nodemon": "^3.1.7",
"typedoc": "^0.26.9",
"typedoc-material-theme": "^1.1.0",
"typescript": "^5.6.3"
},
"dependencies": {
"@slack/bolt": "^3.22.0",
"@types/crypto-js": "^4.2.2",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"puppeteer": "^23.5.3",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"winston": "^3.15.0"
}
}