-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.76 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
{
"name": "nft-market",
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/react": "2.5.4",
"@emotion/react": "11.10.6",
"@emotion/styled": "11.10.6",
"@ethereumjs/tx": "^4.2.0",
"@tanstack/react-query": "^5.20.5",
"@usecapsule/ethers-v6-integration": "1.10.0-dev.0",
"@usecapsule/react-sdk": "3.6.1-dev.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"ethers": "^6.9.0",
"framer-motion": "10.9.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.3.1",
"react-router": "^6.11.1",
"react-router-dom": "^6.11.1",
"react-scripts": "^5.0.1",
"react-slick": "^0.28.1",
"slick-carousel": "^1.8.1",
"stream-browserify": "^3.0.0",
"web3": "1.9.0",
"zustand": "^4.5.0"
},
"scripts": {
"start": "PORT=3007 craco start",
"start:gated": "PORT=3007 REACT_APP_GATED=true craco start",
"build": "craco build",
"serve-build": "PORT=3007 serve -s build",
"deploy-beta": "yarn && yarn build && aws s3 sync build/ s3://capsule-beta-example --acl public-read --profile beta"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@craco/craco": "^7.1.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"serve": "^14.2.0",
"ts-loader": "^9.5.1",
"typescript": "4.9.5",
"webpack": "^5.88.1"
}
}