-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.45 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
87
{
"name": "nft-share-platform-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.5.8",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/experimental": "^5.5.0",
"@ethersproject/providers": "^5.5.3",
"@ethersproject/units": "^5.5.0",
"@semantic-ui-react/css-patch": "^1.0.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/node": "^16.11.22",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-gtm-module": "^2.0.1",
"@walletconnect/ethereum-provider": "^1.7.1",
"@web3-react/core": "^8.0.10-beta.0",
"@web3-react/eip1193": "^8.0.5-beta.0",
"@web3-react/empty": "^8.0.3-beta.0",
"@web3-react/metamask": "^8.0.6-beta.0",
"@web3-react/network": "^8.0.5-beta.0",
"@web3-react/types": "^8.0.3-beta.0",
"@web3-react/url": "^8.0.5-beta.0",
"@web3-react/walletconnect": "^8.0.8-beta.0",
"@web3-react/walletlink": "^8.0.10-beta.0",
"copyfiles": "^2.4.1",
"graphql": "^16.3.0",
"pure-react-carousel": "^1.28.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-gtm-module": "^2.0.11",
"react-infinite-scroll-component": "^6.1.0",
"react-router-dom": "^6.2.2",
"react-scripts": "^5.0.1",
"react-share": "^4.4.1",
"react-social-icons": "^5.15.0",
"react-use-cookie": "^1.4.0",
"rimraf": "^3.0.2",
"semantic-ui-less": "^2.4.1",
"semantic-ui-react": "^2.1.2",
"typescript": "^4.5.5",
"url-regex": "^5.0.0",
"uuid": "^8.3.2",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"backend:schema:download": "apollo schema:download --endpoint=http://localhost:4000/graphql backend-graphql-schema.json",
"backend:schema:codegen": "apollo codegen:generate --localSchemaFile=backend-graphql-schema.json --target=typescript --includes=src/queries-backend/**/*.ts --tagName=gql --addTypename --globalTypesFile=src/types-backend/graphql-global-types.ts types-backend",
"thegraph:schema:download": "apollo schema:download --endpoint=https://api.thegraph.com/subgraphs/name/atarca/nft-share-platform-goerli thegraph-graphql-schema.json",
"thegraph:schema:codegen": "apollo codegen:generate --localSchemaFile=thegraph-graphql-schema.json --target=typescript --includes=src/queries-thegraph/**/*.ts --tagName=gql --addTypename --globalTypesFile=src/types-thegraph/thegraph-global-types.ts types-thegraph",
"test": "craco test",
"eject": "craco eject",
"lint": "eslint \"./src/**/*.{ts,tsx}\"",
"contracts:clean": "rimraf src/typechain-types && rimraf src/abi-generated",
"contracts:update": "npm run contracts:clean && cd ../nft-share-platform-contracts && npm run build && copyfiles \"./typechain-types/**\" \"../nft-share-platform-frontend/src\" && copyfiles \"./abi-generated/**\" \"../nft-share-platform-frontend/src\"",
"postinstall": "semantic-ui-css-patch"
},
"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": {
"@craco/craco": "^6.4.3",
"@semantic-ui-react/craco-less": "^2.0.2",
"@types/uuid": "^8.3.4"
}
}