-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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": "@dev-ptera/nano-rpc-proxy",
"version": "1.1.2",
"description": "Express app which proxies Nano RPC requests",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "tsc --outDir demo/node_modules/@dev-ptera/nano-rpc-proxy/dist && cp package.json demo/node_modules/@dev-ptera/nano-rpc-proxy",
"build:production": "tsc",
"prettier": "prettier \"src/**.{ts,js}\" --write && prettier \"demo/src/**.{ts,js}\" --write",
"start:demo": "cd demo && yarn && cd .. && yarn && yarn build && cd demo && yarn start"
},
"private": false,
"prettier": "@pxblue/prettier-config",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE.md",
"CHANGELOG.md"
],
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1"
},
"devDependencies": {
"@pxblue/prettier-config": "^1.0.2",
"@types/node": "^14.14.34",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"prettier": "^2.1.2",
"tslib": "^2.1.0",
"typescript": "~4.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-ptera/nano-rpc-proxy.git"
},
"keywords": [
"nano",
"proxy",
"server",
"express",
"nodejs",
"rpc",
"nanocurrency",
"typescript"
],
"bugs": {
"url": "https://github.com/dev-ptera/nano-rpc-proxy/issues"
},
"homepage": "https://github.com/dev-ptera/nano-rpc-proxy#readme",
"author": "dev-ptera <[email protected]>"
}