-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 729 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 729 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
{
"name": "messenger-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"start:js": "npm run build && node dist/index.js",
"build": "tsc",
"prettier": "prettier -l \"./!(dist)/**/*.{ts,scss,html}\"",
"prettier:fix": "npm run prettier -- --write"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/cron": "^2.0.0",
"chatgpt": "^3.4.2",
"cron": "^2.2.0",
"dotenv": "^16.0.3",
"puppeteer": "^19.5.2"
},
"devDependencies": {
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
}
}