-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
this idiot of yours had removed package.json from the wrong box...
- Loading branch information
1 parent
da4522d
commit 421ae06
Showing
6 changed files
with
72 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{ | ||
"name": "@aztec/contract_box", | ||
"description": "My Aztec contract", | ||
"private": true, | ||
"version": "0.1.0", | ||
"type": "module", | ||
"scripts": { | ||
"compile": "cd src && ${AZTEC_NARGO:-aztec-nargo} compile", | ||
"codegen": "${AZTEC_BUILDER:-aztec-builder} codegen target -o artifacts", | ||
"clean": "rm -rf ./dest .tsbuildinfo ./artifacts ./target", | ||
"prep": "yarn clean && yarn compile && yarn codegen && tsc -b", | ||
"test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules $(yarn bin jest) --runInBand", | ||
"formatting": "prettier --check ./src && eslint ./src", | ||
"formatting:fix": "prettier -w ./src" | ||
}, | ||
"dependencies": { | ||
"@aztec/builder": "latest", | ||
"@aztec/accounts": "latest", | ||
"@aztec/aztec.js": "latest" | ||
}, | ||
"jest": { | ||
"preset": "ts-jest/presets/default-esm", | ||
"transform": { | ||
"^.+\\.(ts|tsx)$": [ | ||
"ts-jest", | ||
{ | ||
"useESM": true | ||
} | ||
] | ||
}, | ||
"moduleNameMapper": { | ||
"^(\\.{1,2}/.*)\\.js$": "$1" | ||
}, | ||
"testRegex": "tests/.*\\.test\\.ts$", | ||
"rootDir": "./" | ||
}, | ||
"devDependencies": { | ||
"@playwright/test": "1.42.0", | ||
"@types/jest": "^29.5.0", | ||
"@types/node": "^20.11.17", | ||
"copy-webpack-plugin": "^11.0.0", | ||
"html-webpack-plugin": "^5.6.0", | ||
"jest": "^29.6.4", | ||
"stream-browserify": "^3.0.0", | ||
"ts-loader": "^9.5.1", | ||
"typescript": "^5.0.4", | ||
"util": "^0.12.5", | ||
"webpack": "^5.90.1", | ||
"webpack-cli": "^5.1.4", | ||
"webpack-dev-server": "^4.15.1" | ||
}, | ||
"packageManager": "yarn@4.0.2" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es2020", | ||
"outDir": "artifacts/build", | ||
"module": "ESNext", | ||
"moduleResolution": "Bundler", | ||
"skipLibCheck": true | ||
}, | ||
"include": ["**/*.ts"] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters