-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.31 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.31 KB
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
72
73
{
"name": "balmy-indexer",
"scripts": {
"build": "tsc -p tsconfig.json && tsconfig-replace-paths -s src -p tsconfig.json",
"dev": "tsx src/balmy/start.ts -p tsconfig.json",
"lint:check": "prettier --check './**'",
"lint:fix": "sort-package-json && prettier --write './**' ",
"prepare": "husky install",
"start": "node --experimental-require-module --trace-warnings --abort-on-uncaught-exception --unhandled-rejections=strict dist/balmy/start.js",
"test": "jest --forceExit --detectOpenHandles --verbose",
"test:integration": "jest --forceExit --detectOpenHandles --verbose --selectProjects integration",
"test:unit": "jest --forceExit --detectOpenHandles --verbose --selectProjects unit",
"watch": "nodemon -r tsconfig-paths/register src/balmy/start.ts"
},
"lint-staged": {
"*.{js,md,ts,json}": "prettier --write",
"package.json": "sort-package-json"
},
"dependencies": {
"@balmy/sdk": "0.7.12",
"@flatten-js/interval-tree": "1.1.1",
"@isaacs/ttlcache": "1.4.1",
"bcrypt": "5.1.1",
"body-parser": "1.20.2",
"compression": "1.7.4",
"cors": "2.8.5",
"deepmerge": "4.3.1",
"dotenv": "16.0.3",
"express": "4.18.2",
"flatstr": "1.0.12",
"heap-js": "2.3.0",
"ms": "3.0.0-canary.1",
"p-queue": "8.0.1",
"parallel-transform": "1.2.0",
"pg": "8.11.3",
"sql-template-strings": "2.2.2",
"streamx": "2.18.0",
"typed-emitter": "2.1.0",
"viem": "2.23.3"
},
"devDependencies": {
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"@types/bcrypt": "5.0.2",
"@types/body-parser": "1.19.5",
"@types/chai": "4.3.11",
"@types/compression": "1.7.5",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/jest": "29.5.11",
"@types/ms": "0.7.33",
"@types/node": "20.14.11",
"@types/parallel-transform": "1.1.4",
"@types/pg": "8.10.9",
"@types/streamx": "2.9.5",
"@types/ws": "8.5.10",
"chai": "4.3.7",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "13.2.1",
"nodemon": "2.0.22",
"prettier": "2.8.7",
"sort-package-json": "2.4.1",
"ts-jest": "29.1.0",
"tsconfig-paths": "4.2.0",
"tsconfig-replace-paths": "0.0.14",
"tsx": "4.16.5",
"typescript": "5.2.2"
},
"engines": {
"node": "22.6.0"
}
}