forked from mechanismHQ/bns-x
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.07 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
{
"name": "bns",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"r": "NODE_ENV=development dotenv -- node -r @swc-node/register",
"test:server": "pnpm run --filter indexer test:server",
"chainhook-test": "clarinet test --chainhooks chainhooks/tests/testing.chainhook.yaml --chainhooks chainhooks/tests/wrapper.chainhook.yaml --chainhooks chainhooks/tests/nft.chainhook.yaml --mine-block-delay 2 --allow-net tests/chainhooks-test.ts",
"integration-test": "start-server-and-test test:server http://localhost:3003 chainhook-test",
"web": "pnpm run --filter web dev",
"web:prod": "pnpm --filter web start",
"build": "turbo run build",
"lint:fix": "eslint --fix packages/**/*.ts indexer/src/**/*.ts web/common/**/*.ts web/components/**/*.tsx web/pages/**/*.{ts,tsx}"
},
"author": "Hank Stoever",
"license": "ISC",
"prettier": "@stacks/prettier-config",
"dependencies": {
"@clarigen/core": "1.0.10",
"@swc-node/register": "^1.3.7",
"@swc/cli": "^0.1.51",
"@swc/core": "^1.2.105",
"cross-fetch": "^3.1.5",
"dotenv": "^16.0.3",
"merkletreejs": "^0.3.1",
"micro-stacks": "1.1.4",
"prettier": "^2.7.1",
"start-server-and-test": "^1.15.2",
"tsup": "^6.5.0",
"turbo": "^1.7.0",
"typescript": "^4.8.4"
},
"devDependencies": {
"@clarigen/node": "1.0.10",
"@stacks/eslint-config": "1.2.0",
"@stacks/prettier-config": "0.0.10",
"@types/localtunnel": "^2.0.1",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"dotenv-cli": "^6.0.0",
"eslint": "8.20.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-plugin-jest": "^23.16.0",
"eslint-plugin-prettier": "^3.1.4",
"localtunnel": "^2.0.2",
"punycode": "^2.1.1"
},
"pnpm": {
"overrides": {
"json5@<1.0.2": ">=1.0.2",
"json5@>=2.0.0 <2.2.2": ">=2.2.2"
},
"patchedDependencies": {
"@nelson-ui/[email protected]": "patches/@[email protected]"
}
}
}