forked from CarlosRangel17/donation-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.23 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
{
"name": "donation-box",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:coverage": "jest --reporters=default --reporters=jest-junit --coverageReporters=cobertura --coverage --runInBand --watchAll=false",
"test": "jest test src",
"test:watch": "jest test --watch",
"test:coverage": "jest test —-coverage --watchAll=false",
"cypress": "cypress open",
"format": "prettier --write src/**/*.{ts,tsx}",
"lint": "eslint . --ext .ts,.tsx",
"lint:next": "next lint",
"lint:fix": "eslint --fix --ext .ts,tsx",
"type-check": "tsc"
},
"pre-commit": [
"lint",
"format"
],
"dependencies": {
"@babel/core": "^7.12.3",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/node": "^14.11.10",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"chai": "^4.3.4",
"clsx": "^1.1.1",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.0",
"hardhat": "^2.6.6",
"mfcl": "^4.0.1",
"next": "^11.1.2",
"next-images": "^1.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-select-event": "^5.3.0",
"sass": "^1.26.10",
"ts-jest": "^26.1.0",
"typescript": "^4.0.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^10.2.1",
"@testing-library/react-hooks": "^3.3.0",
"@testing-library/user-event": "^11.2.0",
"@types/jest": "^26.0.0",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/parser": "^4.22.0",
"cypress": "^5.4.0",
"cypress-multi-reporters": "^1.4.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"jest-css-modules-transform": "^4.0.0",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^11.1.0",
"jest-junit-reporter": "^1.1.0",
"mocha-junit-reporter": "^2.0.0",
"pre-commit": "^1.2.2"
},
"optionalDependencies": {
"eslint": "^7.28.0",
"eslint-config-airbnb-typescript-prettier": "^4.1.0",
"eslint-config-next": "^11.0.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.1.0",
"prettier": "^2.1.2"
}
}