forked from o1-labs/zkapp-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.6 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.6 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "zkapp-cli",
"version": "0.15.0",
"description": "CLI to create zkApps (zero-knowledge apps) for Mina Protocol",
"homepage": "https://github.com/o1-labs/zkapp-cli/",
"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-core install --with-deps",
"e2e:test": "npm run clean && npx playwright test --workers=1",
"e2e:test:smoke": "npm run e2e:test -- --grep '@on-chain @interaction'"
},
"lint-staged": {
"**/*": [
"eslint -c .eslintrc.js src/** --fix",
"prettier --write --ignore-unknown"
]
},
"jest": {
"testMatch": [
"<rootDir>/src/**/*.test.js"
]
},
"dependencies": {
"chalk": "^5.3.0",
"enquirer": "^2.4.1",
"envinfo": "^7.10.0",
"fast-glob": "^3.3.1",
"find-npm-prefix": "^1.0.2",
"fs-extra": "^11.1.1",
"gittar": "^0.1.1",
"mina-signer": "^2.1.0",
"o1js": "^0.14.*",
"ora": "^7.0.1",
"shelljs": "^0.8.5",
"table": "^6.8.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@playwright/test": "^1.37.1",
"@shimkiv/cli-testing-library": "^0.1.7",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.48.0",
"eslint-plugin-o1js": "^0.4.0",
"execa": "^8.0.1",
"husky": "^8.0.3",
"jest": "^29.6.4",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.0.0"
}
}