-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 3.08 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 3.08 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
74
75
{
"name": "@blocksense/monorepo",
"packageManager": "yarn@4.9.1+sha512.f95ce356460e05be48d66401c1ae64ef84d163dd689964962c6888a9810865e39097a5e9de748876c2e0bf89b232d583c33982773e9903ae7a76257270986538",
"workspaces": [
"apps/*",
"libs/ts/*",
"libs/aztec_contracts/"
],
"scripts": {
"clean": "git clean -fdx -e .env -e .direnv -e .yarn -e .vscode -e .pre-commit-config.yaml -- $(git rev-parse --show-toplevel)",
"format:check": "pre-commit run --all",
"format:write": "pre-commit run --all || pre-commit run --all",
"generate-data-feeds-config": "yarn workspace '@blocksense/data-feeds-config-generator' generate",
"build": "yarn build:recursive",
"build-single": "yarn workspace $0 run build",
"build:recursive": "yarn workspaces foreach --from $0 -Rp --topological-dev run build",
"build:with-deps": "yarn build:recursive $(jq -r .name $INIT_CWD/package.json)",
"build:typecheck": "rm -rf $INIT_CWD/dist && tsc --noEmit -p $INIT_CWD/tsconfig.json",
"build:typecheck-rec": "yarn workspaces foreach -Rp --topological-dev --from $(jq -r .name $INIT_CWD/package.json) run tsc --noEmit -p $INIT_CWD/tsconfig.json",
"build:all": "yarn workspaces foreach --all -p --topological-dev run build",
"test": "yarn workspaces foreach --from $0 -Rp --topological-dev run test",
"test-single": "yarn workspace $0 run test",
"test:all": "yarn workspaces foreach --all -p --topological-dev run test",
"knip": "knip"
},
"dependenciesMeta": {
"@openzeppelin/contracts@5.1.0": {
"unplugged": true
},
"next@14.2.5": {
"unplugged": true
}
},
"exports": {
"./feeds_config": {
"require": "./config/feeds_config_v1.json",
"import": "./config/feeds_config_v1.json"
},
"./chainlink_compatibility": {
"require": "./config/chainlink_compatibility_v1.json",
"import": "./config/chainlink_compatibility_v1.json"
},
"./evm_contracts_deployment_v1": {
"require": "./config/evm_contracts_deployment_v1.json",
"import": "./config/evm_contracts_deployment_v1.json"
}
},
"devDependencies": {
"@blocksense/base-utils": "workspace:*",
"@effect/eslint-plugin": "^0.3.2",
"@effect/language-service": "^0.38.1",
"@eslint/compat": "1.3.2",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.35.0",
"@types/node": "^24.3.1",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"eslint": "^9.35.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-codegen": "0.33.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"knip": "^5.32.2",
"prettier": "^3.4.2",
"react": "^18.3.1",
"ts-node": "^10.9.2",
"typescript": "5.9.2",
"wrangler": "^4.15.2"
},
"resolutions": {
"babel-plugin-react-compiler": "patch:babel-plugin-react-compiler@0.0.0-experimental-22c6e49-20241219#./.yarn/patches/babel-plugin-react-compiler@0.0.0-experimental-22c6e49-20241219.patch"
}
}