-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 1.86 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"type": "module",
"dependencies": {
"@constl/orbit-db-types": "^1.2.9",
"@firaenix/synapse-core": "^1.0.0-alpha.9",
"@gorillapool/js-junglebus": "^0.4.1",
"@orbitdb/core": "^1.0.0",
"@types/chart.js": "^2.9.38",
"@types/lodash": "^4.14.200",
"JSONStream": "^1.3.5",
"better-queue": "^3.8.12",
"bmapjs": "^0.4.0-beta.42",
"body-parser": "^1.20.2",
"bpu-ts": "^0.0.26",
"chalk": "^5.2.0",
"cli-spinner": "^0.2.10",
"cors": "^2.8.5",
"ejs": "^3.1.9",
"event-stream": "^4.0.1",
"eventsource": "^2.0.2",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"got": "^12.6.0",
"ipfs-core": "^0.18.1",
"libp2p": "^0.46.16",
"lodash": "^4.17.21",
"mingo": "^6.3.2",
"mongodb": "^5.2.0",
"node-fetch": "^3.3.1",
"node-persist": "^3.1.3",
"prompt-async": "^0.9.9",
"quickchart-js": "^3.1.3",
"redis": "^4.6.10"
},
"engines": {
"node": "18"
},
"devDependencies": {
"@types/better-queue": "^3.8.3",
"@types/cors": "^2.8.13",
"@types/dns-packet": "^5.6.3",
"@types/eslint": "^8.37.0",
"@types/event-stream": "^4.0.0",
"@types/express": "^4.17.17",
"@types/minimatch": "^5.1.2",
"@types/node": "^18.15.11",
"@types/node-fetch": "^2.6.3",
"@types/node-persist": "^3.1.3",
"@types/whatwg-url": "^11.0.0",
"dotenv": "^16.3.1",
"eslint": "^8.38.0",
"eslint-plugin-node": "latest",
"nodemon": "^2.0.22",
"typescript": "^5.0.4"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"scripts": {
"build": "rimraf build && tsc",
"dev": "ts-node index.ts",
"start": "node ./build/index.js",
"prod": "yarn build && yarn start",
"debug": "yarn build && nodemon --trace-warnings ./build/index.js",
"pm2": "pm2 start ecosystem.config.cjs --env production"
}
}