-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.69 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.69 KB
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
54
{
"name": "web3-storage-uploader",
"version": "0.0.1",
"description": "a service top of web3.storage client to upload files",
"repository": "",
"license": "GPL-3.0",
"author": "https://github.com/zargarzadehm",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc",
"lint": "eslint --fix . && npm run prettify",
"prepare": "husky install",
"prettify": "prettier --write . --ignore-path ./.gitignore",
"start": "node --watch --loader ./ts-node-esm-loader.js --loader extensionless ./src/index.ts",
"start:prod": "node --loader extensionless ./dist/index.js",
"type-check": "tsc --noEmit",
"version": "npx changeset version && npm i",
"postinstall": "patch-package"
},
"dependencies": {
"@fastify/multipart": "^8.3.0",
"@fastify/rate-limit": "^9.1.0",
"@fastify/type-provider-typebox": "^3.4.0",
"@rosen-bridge/winston-logger": "^0.2.1",
"@web3-storage/w3up-client": "^16.0.0",
"patch-package": "^6.5.1",
"axios": "^1.7.4",
"config": "^3.3.7",
"fastify": "^4.18.0",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@rosen-bridge/changeset-formatter": "^0.1.0",
"@types/config": "^0.0.41",
"@types/lodash-es": "^4.17.6",
"@types/node": "^20.11.9",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"extensionless": "^1.9.6",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^3.2.4",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=20.11.0"
}
}