-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 848 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
{
"name": "venom-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc --project ./",
"start": "nodemon index.ts",
"dev": "tsc -w",
"terminal": "ts-node"
},
"nodemonConfig": {
"ignore": [
"tokens/*"
],
"delay": 2500
},
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-validator": "^6.11.1",
"feathers": "^2.2.4",
"open-graph-scraper": "^4.8.2",
"sharp": "^0.28.3",
"venom-bot": "^3.0.18",
"yarn": "^1.22.10"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/express-fileupload": "^1.1.6",
"@types/node": "^15.12.1",
"@types/open-graph-scraper": "^4.8.0",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}