-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.26 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
{
"name": "liberland-blockchain-api",
"version": "1.0.0",
"description": "An API that allows accessing information from the Liberland blockchain via REST.",
"engines": {
"node": "^14.21.3",
"npm": "^6.14.18"
},
"repository": {
"type": "git",
"url": "https://lgl.liberland.org/root/blockchain-api.git"
},
"config": {
"env": "staging",
"port": 8060
},
"main": "src/server.js",
"scripts": {
"prepare": "husky install",
"start": "cross-env node .",
"start:development": "cross-env nodemon .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Liberland",
"licence": "UNLICENSED",
"lint-staged": {
"*.{json,md}": "prettier --write",
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@polkadot/api": "^10.2.1",
"@polkadot/util": "*11.1.2",
"axios": "^1.6.2",
"cors": "^2.8.5",
"debug": "^4.3.4",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"http-errors": "^2.0.0"
},
"devDependencies": {
"chalk": "^4.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.7"
}
}