-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
105 lines (105 loc) · 3.1 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "zkapp-cli",
"version": "0.22.3",
"description": "CLI to create zkApps (zero-knowledge apps) for Mina Protocol",
"homepage": "https://github.com/o1-labs/zkapp-cli/",
"repository": {
"type": "git",
"url": "https://github.com/o1-labs/zkapp-cli.git"
},
"keywords": [
"mina",
"o1js",
"snarkyjs",
"zkapp",
"zk",
"smart contract",
"cryptography",
"blockchain",
"web3",
"zk-snark",
"zero knowledge",
"cli",
"dapp"
],
"license": "Apache-2.0",
"author": "O(1) Labs",
"type": "module",
"bin": {
"zk": "./src/bin/index.js",
"zkapp": "./src/bin/index.js",
"zkapp-cli": "./src/bin/index.js"
},
"scripts": {
"clean": "rimraf ./build && rimraf ./reports",
"coverage": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --coverage",
"format": "prettier --write --ignore-unknown **/*",
"prepare": "husky install",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --silent",
"testw": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --watch --silent",
"lint": "npm run prettier && npm run prettier-check && npm run eslint && npm run clean",
"eslint": "eslint . --ext .js,.ts --quiet --fix",
"prettier-check": "prettier --no-editorconfig --check \"**/*.{js,ts}\"",
"prettier": "prettier --no-editorconfig --write \"**/*.{js,ts}\"",
"e2e:install": "npx playwright install --with-deps",
"e2e:test": "npm run clean && cross-env DEBUG=pw:api,pw:browser* npx playwright test --workers=1",
"e2e:test:ui": "npm run e2e:test -- --project=chromium-desktop --project=firefox-desktop --project=webkit-desktop",
"e2e:test:smoke": "npm run e2e:test -- --grep '@on-chain @interaction'",
"update-changelog": "./update-changelog.sh"
},
"lint-staged": {
"**/*": [
"eslint -c .eslintrc.js src/** --fix",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"acorn": "^8.12.1",
"acorn-walk": "^8.3.3",
"chalk": "^5.3.0",
"debug": "^4.3.5",
"decompress": "^4.2.1",
"enquirer": "^2.4.1",
"envinfo": "^7.13.0",
"fast-glob": "^3.3.2",
"find-npm-prefix": "^1.0.2",
"fs-extra": "^11.2.0",
"mina-signer": "^3.0.7",
"o1js": "^2.*",
"opener": "^1.5.2",
"ora": "^8.0.1",
"semver": "^7.6.2",
"shelljs": "^0.8.5",
"table": "^6.8.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@shimkiv/cli-testing-library": "^0.1.7",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-plugin-o1js": "^0.4.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"pkg-pr-new": "^0.0.17",
"portfinder": "^1.0.32",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"zx": "^8.1.4"
},
"overrides": {
"[email protected]": {
"whatwg-url": "14.x"
}
},
"engines": {
"node": ">=18.14.0"
}
}