forked from Comdex/mina-zkapps-e2e-testing
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 2.63 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
{
"name": "mina-zkapps-e2e-testing",
"version": "0.1.0",
"description": "",
"author": "",
"license": "Apache-2.0",
"keywords": [
"mina-zkapp",
"mina-zk-app",
"mina-dapp",
"zkapp"
],
"type": "module",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"build": "tsc",
"buildw": "tsc --watch",
"coverage": "node --experimental-vm-modules --experimental-wasm-threads node_modules/jest/bin/jest.js --coverage",
"format": "prettier --write --ignore-unknown **/*",
"prepare": "husky install",
"test": "node --experimental-vm-modules --experimental-wasm-threads node_modules/jest/bin/jest.js",
"test:berkeley": "cross-env TEST_ON_BERKELEY=true npm run test",
"test:ci": "bash ./run-jest-tests-ci.sh",
"testw": "node --experimental-vm-modules --experimental-wasm-threads node_modules/jest/bin/jest.js --watch",
"lint": "npx eslint src/* --fix",
"test:token": "cross-env TEST_ON_BERKELEY=true node --stack-trace-limit=1000 --experimental-vm-modules --experimental-wasm-threads node_modules/jest/bin/jest.js --findRelatedTests src/token/token_contract.test.ts",
"test:nft": "cross-env TEST_ON_BERKELEY=true node --stack-trace-limit=1000 --experimental-vm-modules --experimental-wasm-threads node_modules/jest/bin/jest.js --findRelatedTests src/nft_rollup/nft_rollup_contract.test.ts",
"test:tokenlocal": "cross-env TEST_ON_BERKELEY=false node --stack-trace-limit=1000 --experimental-vm-modules --experimental-wasm-threads node_modules/jest/bin/jest.js --findRelatedTests src/token/token_contract.test.ts",
"test:nftlocal": "cross-env TEST_ON_BERKELEY=false node --stack-trace-limit=1000 --experimental-vm-modules --experimental-wasm-threads node_modules/jest/bin/jest.js --findRelatedTests src/nft_rollup/nft_rollup_contract.test.ts",
"analyze": "tsc -p tsconfig.json && node --stack-trace-limit=1000 --experimental-specifier-resolution=node ./build/src/contract_analyze.js"
},
"lint-staged": {
"**/*": [
"eslint src/* --fix",
"prettier --write --ignore-unknown"
]
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.7.0",
"eslint-plugin-snarkyjs": "^0.1.0",
"husky": "^7.0.1",
"jest": "^27.3.1",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2",
"ts-jest": "^27.0.7",
"typescript": "^4.7.2"
},
"peerDependencies": {
"snarkyjs": "^0.9.8"
},
"dependencies": {
"snarky-smt": "0.6.1"
}
}