-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.59 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": "membership-nft-interface",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS=’–inspect’ next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"cy:open": "CYPRESS_REMOTE_DEBUGGING_PORT=9222 cypress open",
"cy:run": "CYPRESS_REMOTE_DEBUGGING_PORT=9222 cypress run --headed --browser chrome",
"cy:run:headless": "CYPRESS_REMOTE_DEBUGGING_PORT=9222 cypress run --headless --browser chrome",
"e2e": "start-server-and-test dev http://localhost:3000 cy:run",
"e2e:headless": "start-server-and-test dev http://localhost:3000 cy:run:headless"
},
"dependencies": {
"@chakra-ui/icons": "2.0.0",
"@chakra-ui/react": "2.0.0",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@hirohe/react-watermark": "^0.2.0",
"ethers": "^5.6.4",
"framer-motion": "^6",
"next": "12.1.5",
"next-translate": "^1.4.0",
"react": "18.0.0",
"react-device-detect": "^2.2.2",
"react-dom": "18.0.0",
"wagmi": "0.3.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/node": "17.0.24",
"@types/react": "18.0.5",
"@types/react-dom": "18.0.1",
"cypress": "^9.6.1",
"cypress-metamask": "^1.0.5-development",
"eslint": "8.13.0",
"eslint-config-next": "12.1.5",
"http-server": "^14.1.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"prettier": "^2.6.2",
"react-icons": "^4.3.1",
"start-server-and-test": "^1.14.0",
"typescript": "4.6.3"
}
}