-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1018 Bytes
/
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": "@scobru/mogu",
"version": "4.0.7",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "commonjs",
"license": "MIT",
"scripts": {
"start": "ts-node src/server.ts",
"dev": "nodemon src/server.ts",
"build": "tsc",
"test": "ts-node src/tests/test.ts"
},
"dependencies": {
"@types/jsonwebtoken": "^9.0.7",
"@types/mime-types": "^2.1.1",
"axios": "^1.6.2",
"dayjs": "^1.11.13",
"dotenv": "^16.3.1",
"fs-extra": "^11.2.0",
"ipfs-http-client": "56.0.3",
"js-sha3": "^0.9.3",
"jsonwebtoken": "^9.0.2",
"lru-cache": "^11.0.2",
"mime-types": "^2.1.35",
"morgan": "^1.10.0",
"multiformats": "^13.0.0",
"pinata-web3": "^0.5.2",
"winston": "^3.17.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/morgan": "^1.9.9",
"@types/node": "^20.9.3",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}