-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "messenger-bot-api",
"version": "1.0.0",
"description": "Api that can send messages to messenger users",
"main": "./dist/src/app.js",
"scripts": {
"build": "tsc -p . -w",
"start": "nodemon --experimental-json-modules dist/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YanchoK/Messenger-bot-API.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/YanchoK/Messenger-bot-API/issues"
},
"homepage": "https://github.com/YanchoK/Messenger-bot-API#readme",
"dependencies": {
"@prisma/client": "^5.0.0",
"body-parser": "^1.20.2",
"chromedriver": "^110.0.0",
"clipboardy": "^3.0.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"joi": "^17.7.1",
"node-cron": "^3.0.2",
"node-schedule": "^2.1.1",
"prisma": "^5.0.0",
"selenium": "^2.20.0",
"selenium-webdriver": "^4.8.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node-cron": "^3.0.7",
"@types/selenium-webdriver": "^4.1.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.2",
"nodemon": "^2.0.20",
"typescript": "^4.9.5"
},
"type": "module"
}