-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.44 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.44 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "liberdus",
"version": "2.4.8",
"description": "Liberdus is a payment network that allows users to govern their own money system in a democratic fashion",
"main": "dist/index.js",
"scripts": {
"build-client": "npm explore liberdus-web-client -- npm install && npm explore liberdus-web-client -- npm run build",
"run-client": "npm explore liberdus-web-client -- npm start",
"start-client": "shardus pm2 start npm -- run run-client",
"stop-client": "shardus pm2 stop npm",
"start": "(shardus clean || true) && npm run build-client && shardus start 10 && npm run start-client && echo \"\nmonitor: http://localhost:3000\nweb-client: http://localhost:3333\nexplorer: http://localhost:4444\"",
"stop": "npm run stop-client && shardus stop",
"test": "jest --coverage",
"update-template": "node scripts/update-template.js",
"update-docker": "node scripts/update-docker.js",
"check": "gts check",
"compile": "tsc -p .",
"fix": "gts fix",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check",
"dbg": "shardus start 3 && shardus stop && rm -rf instances/",
"build-docker-dev": "sudo docker build -f dev.Dockerfile -t ghcr.io/liberdus/server:dev .",
"push-docker-dev": "sudo docker push ghcr.io/liberdus/server:dev",
"build-docker-production": "sudo docker build -f dev.Dockerfile -t ghcr.io/liberdus/server:latest .",
"push-docker-production": "sudo docker push ghcr.io/liberdus/server:latest"
},
"author": "Kyle Shifflett",
"license": "ISC",
"dependencies": {
"@shardus/lib-archiver-discovery": "1.3.2",
"@shardus/core": "2.16.0-prerelease.11",
"@shardus/lib-crypto-utils": "4.3.3",
"@shardus/lib-net": "1.6.2",
"@shardus/lib-types": "1.4.4",
"chalk-pipe": "^3.0.0",
"decimal.js": "^10.2.0",
"deepmerge": "^4.2.2",
"dot-prop": "^5.1.1",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"ethers": "^6.13.4",
"fast-stable-stringify": "^1.0.0",
"inquirer": "^7.0.0",
"moment": "^2.24.0",
"nodemailer": "^6.3.1",
"nodemailer-smtp-transport": "^2.7.4",
"sqlite3": "^5.1.7",
"streamroller": "^2.2.3",
"vorpal": "^1.12.0",
"ajv": "^6.12.6"
},
"devDependencies": {
"@shardus/archiver": "git+https://github.com/liberdus/archiver#v3.7.9",
"@shardus/monitor-server": "2.8.9",
"@types/decimal.js": "^7.4.0",
"@types/express": "^4.17.2",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.149",
"@types/node": "18.16.1",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"@typescript-eslint/typescript-estree": "6.10.0",
"axios": "^0.21.1",
"cross-env": "^5.2.0",
"eslint": "8.44.0",
"eslint-config-prettier": "8.6.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-no-unsanitized": "4.0.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-standard": "4.0.1",
"eslint-plugin-xss": "0.1.12",
"execa": "^4.0.1",
"gts": "3.1.1",
"hygen-create": "0.2.1",
"jest": "26.6.3",
"pm2": "5.3.0",
"prettier": "2.8.1",
"shardus": "4.3.0",
"shelljs": "0.8.5",
"standard": "12.0.1",
"ts-jest": "26.5.2",
"typescript": "4.9.4",
"yarpm": "0.2.1"
}
}