-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 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
{
"name": "crytures",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest",
"test-coverage": "jest --collect-coverage",
"check-linter": "eslint src",
"check-format": "prettier --c .",
"lint": "eslint --fix src",
"format": "prettier --write .",
"validate": "yarn check-linter && yarn check-format && yarn test",
"fix": "yarn lint && yarn format"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"prettier": "3.2.5",
"ts-jest": "^29.1.2",
"ts-sinon": "^2.0.2",
"typescript": "^5.3.3",
"typescript-eslint": "^7.1.0",
"vite": "^5.1.0"
},
"dependencies": {
"@metamask/providers": "^17.1.2",
"ethers": "^6.13.2",
"install": "^0.13.0",
"ts-key-enum": "^2.0.12"
},
"jest": {
"setupFiles": [
"jest-canvas-mock"
]
}
}