-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.41 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.41 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
{
"type": "module",
"scripts": {
"start": "ts-node src/index.ts",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx,json}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx,json}\"",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json}\" --config ./.prettierrc",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json}\" --config ./.prettierrc",
"build": "rimraf ./dist && ts-node build.ts"
},
"dependencies": {
"@apollo/client": "^3.7.11",
"@bundlr-network/client": "0.11.6",
"@fair-protocol/sdk": "^2.0.8",
"@irys/query": "^0.0.7",
"@metamask/eth-sig-util": "^7.0.2",
"arweave": "^1.13.0",
"async-mutex": "^0.4.0",
"bundle-require": "^4.0.1",
"graphql": "^16.6.0",
"pdf2json": "^3.0.5",
"pino": "^8.12.1",
"request": "^2.88.2",
"rimraf": "^5.0.1",
"viem": "^2.10.2",
"warp-contracts": "^1.4.14",
"warp-contracts-plugin-deploy": "^1.0.9",
"workerpool": "^6.4.0"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/workerpool": "^6.4.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"esbuild": "^0.18.20",
"esbuild-node-externals": "^1.8.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
}
}