-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 971 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
{
"name": "waifu-generator-api",
"version": "1.0.0",
"description": "An API for waifu generator, scrape from jurnalotaku.com",
"main": "index.js",
"author": "satya wikananda <[email protected]>",
"license": "MIT",
"scripts": {
"start": "nodemon --watch *.ts --exec ts-node ./index.ts",
"start:v1": "nodemon --watch src/**/*.ts --exec ts-node api/v1/index.ts",
"start:v2": "nodemon --watch src/**/*.ts --exec ts-node api/v2/index.ts",
"dev": "nodemon --watch src/**/*.ts --exec ts-node src/index.ts"
},
"dependencies": {
"axios": "^0.19.2",
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.3",
"express": "^4.17.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"devDependencies": {
"@types/cheerio": "^0.22.18",
"@types/express": "^4.17.7",
"@types/nodemon": "^1.19.0",
"@vercel/node": "^1.7.1",
"nodemon": "^2.0.4"
},
"nodemonConfig": {
"ignore": [
"*.json"
]
}
}