-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.95 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
69
70
71
{
"name": "freighter-backend",
"version": "1.1.0",
"description": "Freighter's indexer integration layer and general backend",
"main": "index.js",
"scripts": {
"start": "npx ts-node --project tsconfig.json src/index.ts",
"build:prod": "webpack --mode production --config ./webpack.prod.js",
"prepare": "husky install",
"test": "jest",
"test:ci": "jest --ci"
},
"husky": {
"hooks": {
"pre-commit": "concurrently 'pretty-quick --staged' 'lint-staged'",
"post-merge": "yarn install-if-package-changed",
"post-checkout": "yarn install-if-package-changed"
}
},
"lint-staged": {
"src/**/*.ts?(x)": [
"eslint --fix --max-warnings 0"
]
},
"author": "[email protected]",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">=18.12.0"
},
"dependencies": {
"@blockaid/client": "^0.29.1",
"@fastify/cors": "^10.0.1",
"@fastify/helmet": "^12.0.1",
"@fastify/rate-limit": "^10.1.1",
"@sentry/node": "^8.38.0",
"@stellar/js-xdr": "^3.1.2",
"@urql/core": "^5.0.8",
"ajv": "^8.17.0",
"axios": "^1.7.7",
"dotenv-expand": "^11.0.6",
"fastify": "^5.1.0",
"ioredis": "^5.4.1",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"prom-client": "^15.1.3",
"stellar-sdk": "yarn:[email protected]",
"stellar-sdk-next": "yarn:[email protected]",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@stellar/tsconfig": "^1.0.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/yargs": "^17.0.33",
"babel-jest": "^29.7.0",
"dotenv": "^16.4.5",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}