-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 994 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
{
"name": "filmweb-scraper",
"version": "1.1.2",
"description": "Filmweb Scraper",
"type": "module",
"main": "index.ts",
"scripts": {
"prod": "node dist/index.js",
"start": "tsx src/index.ts",
"dev": "nodemon --exec tsx src/index.ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest --watchAll",
"build": "tsc",
"update:all": "corepack up && pnpm update"
},
"author": "Jakub Cieślik",
"license": "UNLICENSED",
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b",
"dependencies": {
"axios": "^1.7.7",
"cheerio": "1.0.0-rc.12",
"csv-writer": "^1.6.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.5",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"ts-jest": "^29.2.5",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}