-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.71 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
{
"name": "@muritavo/cypress-toolkit",
"version": "0.13.4",
"description": "A series of utility functions for working with cypress (mainly cypress Component testing)",
"main": "dist/index.js",
"repository": "[email protected]:Muritavo/cypress-toolkit.git",
"author": "Murilo Araujo <[email protected]>",
"license": "MIT",
"files": [
"dist",
"types",
"index.d.ts"
],
"keywords": [
"cypress",
"e2e",
"testing",
"unit testing",
"blockchain",
"firebase",
"automation"
],
"type": "module",
"devDependencies": {
"@muritavo/webpack-microfrontend-scripts": "^0.1.3",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-ganache": "^2.0.1",
"@types/debug": "^4.1.12",
"@types/kill-port": "^2.0.0",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@types/spellchecker": "^3.5.0",
"@types/webpack": "^5.28.0",
"cypress": "12",
"cypress-visual-regression": "https://github.com/muritavo/cypress-visual-regression",
"ethers": "^5",
"firebase": "^9.9.1",
"firebase-admin": "^11.3.0",
"ganache": "^7.3.2",
"hardhat": "2.22.1",
"jest": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"spellchecker": "^3.7.1",
"ts-jest": "^29.1.2",
"typedoc": "^0.25.4",
"typedoc-plugin-merge-modules": "^5.1.0",
"typescript": "^5.0.3"
},
"scripts": {
"doc": "typedoc ./index.d.ts ./types/ai.d.ts --excludeExternals --excludeInternal --disableSources",
"dev": "tsc --watch",
"dev:vite": "tsc -P ./tsconfig.vite.json --watch",
"prebuild": "yarn doc",
"build": "tsc",
"test:watch": "cypress open --component --browser chrome",
"test:e2e:watch": "cypress open --e2e --browser chrome",
"prepack": "npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watchAll"
},
"types": "index.d.ts",
"dependencies": {
"@cypress/code-coverage": "^3.10.0",
"@cypress/react": "^6.0.0",
"@cypress/snapshot": "^2.1.7",
"@firebase/rules-unit-testing": "^2.0.3",
"@muritavo/testing-toolkit": "^0.4.1",
"@truffle/compile-solidity": "^6.0.34",
"@types/find-cache-dir": "^3.2.1",
"@types/lodash": "^4.17.0",
"@types/node-fetch": "^2.6.2",
"babel-plugin-import": "^1.13.8",
"babel-plugin-istanbul": "^6.1.1",
"cypress-file-upload": "^5.0.8",
"cypress-real-events": "^1.7.0",
"cypress-wait-until": "^1.7.2",
"debug": "^4.3.4",
"deepdash": "^5.3.9",
"dot-notes": "^3.2.1",
"find-cache-dir": "^3.3.2",
"kill-port": "^2.0.1",
"lodash": "^4.17.21",
"node-fetch": "^2",
"truffle": "^5.5.21"
}
}