-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.43 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
{
"name": "aztec-example-vanilla",
"private": true,
"version": "0.1.0",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"clean": "rm -rf app/dist contracts/target contracts/codegenCache.json",
"compile-contracts": "cd contracts && aztec compile",
"codegen-contracts": "cd contracts && aztec codegen ./target -o ./target",
"copy-artifacts": "mkdir -p app/artifacts && cp contracts/target/*.json contracts/target/*.ts app/artifacts",
"build-contracts": "yarn clean && yarn compile-contracts && yarn codegen-contracts && yarn copy-artifacts",
"deploy-contracts": "node --experimental-transform-types scripts/deploy.ts",
"dev": "webpack serve --mode development",
"build-app": "webpack --mode production",
"build": "yarn build-contracts && yarn build-app",
"serve": "webpack serve --mode production --port ${PORT:-3000}",
"prep-test": "PROVER_ENABLED=false yarn deploy-contracts && yarn build-app",
"test": "yarn prep-test && yarn playwright test",
"lint": "prettier --check ./src"
},
"dependencies": {
"@aztec/accounts": "3.0.0-devnet.6-patch.1",
"@aztec/aztec.js": "3.0.0-devnet.6-patch.1",
"@aztec/constants": "3.0.0-devnet.6-patch.1",
"@aztec/entrypoints": "3.0.0-devnet.6-patch.1",
"@aztec/foundation": "3.0.0-devnet.6-patch.1",
"@aztec/kv-store": "3.0.0-devnet.6-patch.1",
"@aztec/noir-contracts.js": "3.0.0-devnet.6-patch.1",
"@aztec/pxe": "3.0.0-devnet.6-patch.1",
"@aztec/stdlib": "3.0.0-devnet.6-patch.1",
"@aztec/test-wallet": "3.0.0-devnet.6-patch.1",
"@aztec/wallet-sdk": "3.0.0-devnet.6-patch.1"
},
"devDependencies": {
"@playwright/test": "1.49.0",
"@types/node": "^22.15.17",
"assert": "^2.1.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.1",
"css-loader": "^6.10.0",
"dotenv-webpack": "^8.0.1",
"html-webpack-plugin": "^5.6.0",
"prettier": "^3.5.3",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"typescript": "^5.7.3",
"util": "^0.12.5",
"webpack": "^5.99.6",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1"
},
"prettier": {
"semi": true,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "es5"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}