-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
50 lines (50 loc) · 1.65 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
{
"name": "integration-tests",
"version": "0.0.0",
"title": "Integration tests",
"description": "The test solution for Block Explorer API and UI",
"repository": "https://github.com/matter-labs/block-explorer",
"private": true,
"author": "Matter Labs",
"license": "MIT",
"scripts": {
"postinstall": "npm run install:playbook",
"install:playbook": "cd src/playbook && npm install",
"integration-test:api": "jest --verbose",
"integration-test:ui": "npx playwright test",
"block-explorer:start": "docker-compose up",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-pattern 'repos' --ignore-pattern 'git add .'"
},
"devDependencies": {
"@matterlabs/eslint-config-vue": "^1.1.4",
"@matterlabs/hardhat-zksync-deploy": "^1.4.0",
"@matterlabs/hardhat-zksync-solc": "^1.1.4",
"@matterlabs/prettier-config": "^1.0.2",
"@matterlabs/zksync-contracts": "^0.6.1",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@openzeppelin/contracts": "^4.6.0",
"@openzeppelin/contracts-upgradeable": "^4.6.0",
"@playwright/test": "^1.37.1",
"@types/jest": "^29.2.4",
"@types/node": "^18.15.0",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"ethers": "^6.13.0",
"hardhat": "^2.12.0",
"jest": "^29.6.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.2",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"zksync-web3": "^0.17.1"
},
"dependencies": {
"ts-jest-resolver": "^2.0.0"
},
"prettier": "@matterlabs/prettier-config",
"lint-staged": {
"*.{vue,js,ts}": "npm run lint"
}
}