This repository was archived by the owner on Mar 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathpackage.json
87 lines (87 loc) · 2.87 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@aztec/protocol",
"description": "Main AZTEC smart contract repository",
"version": "0.0.0-semantically-released",
"author": "AZTEC",
"bugs": {
"url": "https://github.com/AztecProtocol/AZTEC/issues"
},
"dependencies": {
"@openzeppelin/contracts-ethereum-package": "^2.4.0",
"@openzeppelin/gsn-helpers": "^0.2.1",
"@openzeppelin/gsn-provider": "^0.1.9",
"@openzeppelin/network": "^0.2.10",
"@openzeppelin/upgrades": "^2.6.0",
"axios": "^0.19.0",
"openzeppelin-solidity": "^2.4.0"
},
"devDependencies": {
"@0x/sol-coverage": "^3.0.0",
"@0x/sol-profiler": "^3.1.2",
"@0x/sol-trace": "^2.0.8",
"@0x/subproviders": "^5.0.1",
"@aztec/bn128": "0.0.0-semantically-released",
"@aztec/dev-utils": "0.0.0-semantically-released",
"@aztec/secp256k1": "0.0.0-semantically-released",
"@aztec/typed-data": "0.0.0-semantically-released",
"@truffle/contract": "^4.1.0",
"aztec.js": "0.0.0-semantically-released",
"bn.js": "^4.11.8",
"coveralls": "^3.0.2",
"dotenv": "^8.0.0",
"eslint": "^5.15.3",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.16.0",
"fs-extra": "^8.1.0",
"ganache-cli": "^6.4.1",
"istanbul": "^0.4.5",
"lodash": "^4.17.11",
"mocha": "^6.0.2",
"shx": "^0.3.2",
"solhint": "^2.0.0",
"truffle": "5.1.2",
"truffle-assertions": "^0.9.1",
"truffle-hdwallet-provider": "1.0.17",
"web3": "1.2.1",
"web3-utils": "1.2.4"
},
"engines": {
"node": ">=8.3"
},
"files": [
"/contracts"
],
"homepage": "https://github.com/AztecProtocol/AZTEC/tree/master/packages/protocol#readme",
"keywords": [
"aztec",
"blockchain",
"confidentiality",
"cryptography",
"ethereum",
"privacy",
"protocol"
],
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/AztecProtocol/AZTEC.git"
},
"scripts": {
"clean": "shx rm -rf ./.0x-artifacts ./build ./coverage ./coverageEnv ./coverage.json || true",
"compile:contracts": "truffle compile --all",
"coverage": "scripts/coverage.sh",
"deploy:rinkeby": "truffle migrate --network rinkeby",
"deploy:ropsten": "truffle migrate --network ropsten",
"deploy:mainnet": "truffle migrate --network mainnet",
"lint": "yarn lint:js && yarn lint:sol",
"lint:js": "eslint --ignore-path ../../.eslintignore .",
"lint:sol": "solhint --ignore-path ../../.solhintignore \"contracts/**/*.sol\"",
"profile": "scripts/profile.sh",
"has:changed": "bash ../monorepo-scripts/ci/hasChanged.sh protocol",
"test": "NODE_ENV=TEST LOCAL_DATABASE_PATH=$(pwd)/test/localSetupDatabase/ scripts/test.sh",
"test:sol": "NODE_ENV=TEST LOCAL_DATABASE_PATH=$(pwd)/test/localSetupDatabase/ scripts/test.sh",
"trace": "scripts/trace.sh",
"test:gsn": "scripts/testGSN.sh"
}
}