-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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
47
48
49
50
51
52
53
{
"name": "explorer-index",
"version": "v1.0.3",
"description": "A fact-indexing service to live alongside the Orcfax Explorer",
"main": "index.ts",
"scripts": {
"dev": "pnpm dlx nodemon",
"build": "rimraf ./build && tsc",
"start": "node build/index.js",
"lint": "eslint . --ext .ts",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"husky": {
"hooks": {
"pre-commit": "pnpm run format && pnpm run lint"
}
},
"keywords": [],
"author": "Orcfax",
"license": "ISC",
"type": "module",
"dependencies": {
"@types/tar-stream": "^3.1.3",
"blake2b": "^2.1.4",
"cbor": "^9.0.2",
"cron": "^3.1.6",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"p-limit": "^6.1.0",
"pocketbase": "^0.21.3",
"tar-stream": "^3.1.7",
"winston": "^3.13.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/blake2b": "^2.1.3",
"@types/express": "^4.17.21",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"nodemon": "^3.0.3",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"tsx": "^4.2.0",
"typescript": "^5.2.2"
}
}