-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.58 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
{
"name": "2pi-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@2pi-network/js-sdk": "^0.2.0-beta.29",
"@gnosis.pm/safe-apps-web3modal": "^4.0.0",
"@popperjs/core": "^2.10.2",
"@sentry/react": "^6.13.3",
"@sentry/tracing": "^6.13.3",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@walletconnect/web3-provider": "^1.6.6",
"bootstrap": "^5.1.3",
"bootstrap-icons": "^1.6.1",
"ethers-multicall": "^0.2.1",
"jest-fetch-mock": "^3.0.3",
"next": "^11.1.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.43.4",
"walletlink": "^2.1.11",
"web-vitals": "^2.1.2",
"web3": "^1.6.0",
"web3modal": "^1.9.4"
},
"scripts": {
"start": "next start",
"dev": "next dev",
"build": "scripts/build.sh",
"lint": "next lint",
"test": "jest",
"release": "scripts/release.sh"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/test/setup.js"
],
"testEnvironment": "jsdom"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@sentry/cli": "^1.70.1",
"eslint": "^8.1.0",
"eslint-config-next": "^11.1.2",
"eslint-plugin-jest": "^25.2.2",
"jest": "^27.3.1"
}
}