forked from merokudao/meroku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "@bitpack/selfhosting",
"version": "1.0.0",
"description": "Self Hosting web3 apps",
"main": "index.js",
"author": "Bitpack.me Monk!es",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typedoc": "^0.22.15",
"typescript": "^4.6.3"
},
"scripts": {
"prestart": "source $HOME/.nvm/nvm.sh; nvm use",
"doc": "typedoc --options ./typedoc.json",
"build": "tsc",
"start": "node ./build/app.js",
"dev": "ts-node ./src/app.ts",
"lint": "eslint . --ext .ts",
"pretty": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"dependencies": {
"axios": "^0.26.1",
"chalk": "^5.0.1",
"commander": "^9.1.0",
"debug": "^4.3.4",
"dotenv": "^16.0.0",
"fs-extra": "^10.0.1",
"liquidjs": "^9.36.0",
"url-exist": "2.0.2",
"winston": "^3.7.2"
},
"files": [
"build",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=17.8.0"
}
}