-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
54
55
56
{
"name": "api-backend",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "sudo $(which node) $(which forever) start -a -l forever.log -o stdout.log -e stderr.log index.js",
"start-proxied": "HTTP_PORT=8080 HTTPS_PORT=8443 node index.js",
"stop": "sudo $(which node) $(which forever) stop index.js",
"dev": "sudo $(which node) index.js",
"format": "prettier --write '**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modulesio/webaverse-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/modulesio/webaverse-server/issues"
},
"homepage": "https://github.com/modulesio/webaverse-server#readme",
"dependencies": {
"@onflow/sdk": "0.0.31",
"@onflow/types": "0.0.4",
"aws-sdk": "^2.750.0",
"bip39": "^3.0.2",
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"ethereumjs-wallet": "^1.0.1",
"form-data": "^3.0.0",
"form-urlencoded": "^4.2.1",
"got-nfts": "^1.0.4",
"gpt-3-encoder": "^1.1.3",
"http-proxy": "^1.18.1",
"lru": "^3.1.0",
"mime": "^2.4.6",
"mkdirp": "^1.0.4",
"node-fetch": "^2.6.0",
"openai-api": "^1.2.6",
"prettier": "^2.5.1",
"ps-node": "^0.1.6",
"puppeteer": "^5.3.1",
"redis": "^3.1.1",
"redis-redisearch": "^1.0.1",
"sha3": "^2.1.3",
"stripe": "^8.95.0",
"uuid": "^8.3.2",
"web3": "^1.3.0",
"ws": "^7.3.1"
},
"devDependencies": {
"forever": "^3.0.0",
"nodemon": "^2.0.4"
}
}