-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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
{
"name": "Rollerball",
"version": "1.0.0",
"description": "Rollerball is a CLI tool that keeps track of bookmarks in a Xata database",
"main": "index.ts",
"scripts": {
"start": "ts-node index.ts",
"search": "ts-node fetch.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@xata.io/client": "^0.28.4",
"cheerio": "1.0.0-rc.12",
"node-fetch": "^2.7.0"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --config=.prettierrc.precommit.js --write",
"eslint --cache --fix"
]
},
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/node": "^16.18.101",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"dotenv": "^16.4.5",
"eslint": "=8.4.1",
"eslint-config-prettier": "=8.3.0",
"eslint-plugin-prettier": "=4.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.7",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
}