-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "storage-market-api",
"license": "MIT",
"version": "0.0.1",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "next -p 4444",
"build": "next build",
"start": "NODE_ENV=production next start",
"script": "NODE_TLS_REJECT_UNAUTHORIZED=0 ts-node -O '{\"module\":\"commonjs\"}' scripts/index.js"
},
"dependencies": {
"@filecoin-shipyard/lotus-client-provider-nodejs": "^1.1.1",
"@filecoin-shipyard/lotus-client-rpc": "^1.2.0",
"@filecoin-shipyard/lotus-client-schema": "^4.2.0",
"@glif/filecoin-number": "^2.0.5",
"aes-js": "^3.1.2",
"bcrypt": "^5.1.0",
"csv-parser": "^3.0.0",
"dotenv": "^16.0.3",
"google-spreadsheet": "^3.3.0",
"is-ip": "^5.0.0",
"knex": "^2.4.0",
"lodash": "^4.17.21",
"memory-cache": "^0.2.0",
"next": "13.1.2",
"node-ipinfo": "^3.3.0",
"pg": "^8.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.6.2",
"sass": "1.56.2"
},
"devDependencies": {
"@types/node": "^18.11.13",
"@types/react": "^18.0.26",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}