-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.31 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
{
"name": "youtube-recommendation-scraper",
"version": "0.3.0",
"keywords": [
"Youtube",
"Recommendation"
],
"description": "Youtube Recommendation Scraper",
"author": "Luciano Frizzera <[email protected]> (luciano.fluxo.art.br)",
"license": "MIT",
"main": "index.js",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"clean": "turbo clean && rm -rf node_modules && rm -rf .turbo",
"cm": "git-cz",
"collect-once": "node packages/crawler/dist/cli/collectOnce/index.js",
"collect-one": "node packages/crawler/dist/cli/collectOne/index.js",
"dev": "turbo dev --no-cache --continue",
"changeset": "changeset",
"format": "prettier . --write",
"format-check": "prettier . --check",
"lint": "turbo lint",
"prepare": "husky",
"release": "changeset publish",
"start": "turbo start",
"test": "turbo test",
"version-packages": "changeset version"
},
"devDependencies": {
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.27.1",
"commitizen": "^4.3.0",
"eslint": "^8.57.0",
"eslint-config-custom": "*",
"git-cz": "^4.9.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"turbo": "^1.13.2"
}
}