-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.13 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
{
"name": "ironfish-wallet-server",
"version": "0.0.1",
"description": "Server that provides Iron Fish light clients access to the network.",
"author": "Iron Fish <[email protected]> (https://ironfish.network)",
"homepage": "https://github.com/iron-fish/ironfish#readme",
"license": "MPL-2.0",
"main": "dist/server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/iron-fish/ironfish.git"
},
"scripts": {
"dev": "nodemon --config ./nodemon.json --exec 'yarn build && yarn start'",
"lint": "eslint --ext .ts .",
"test": "yarn build && CACHE_PATH='test/cache' UPLOAD_BLOCKS=false BUILD_CACHE=false jest src/* --forceExit --runInBand",
"format": "prettier . --write",
"prebuild": "node bin/proto && rimraf dist",
"tsoa-gen": "tsoa spec-and-routes",
"build": "yarn prebuild && yarn tsoa-gen && tsc -b && tsc-alias -p tsconfig.json",
"start": "node dist/server.js",
"prepare": "husky"
},
"bugs": {
"url": "https://github.com/iron-fish/ironfish/issues"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/leveldown": "^4.0.3",
"@types/levelup": "^5.1.2",
"@types/node": "20.4.2",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"husky": ">=6",
"lint-staged": ">=10",
"nodemon": "^3.0.1",
"prettier": "3.0.0",
"ts-node": "10.9.1",
"grpc-tools": "^1.12.4",
"tsc-alias": "^1.8.7",
"typescript": "5.1.6",
"supertest": "^6.3.4",
"jest": "^29.7.0",
"rimraf": "5.0.1",
"ts-jest": "^29.1.2"
},
"dependencies": {
"levelup": "^5.1.1",
"dotenv": "^16.3.1",
"leveldown": "^6.1.1",
"@ironfish/sdk": "2.5.0",
"@aws-sdk/client-s3": "3",
"express": "^4.18.3",
"ts-proto": "1.155.1",
"tsoa": "^6.1.4",
"source-map-support": "0.5.21",
"swagger-ui-express": "^5.0.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{js,ts}": "prettier --write"
}
}