-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.27 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
{
"name": "metestates",
"description": "The new digital land-rush is upon us! Will you become the next land-baron?",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.5.5",
"@chakra-ui/react": "^2.2.6",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@ethersproject/bignumber": "^5.6.2",
"@ethersproject/contracts": "^5.6.2",
"@ethersproject/units": "^5.6.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@usedapp/core": "^1.1.5",
"apollo3-cache-persist": "^0.13.0",
"framer-motion": "^6.5.1",
"jazzicon": "^1.5.0",
"localforage": "^1.10.0",
"memoize-one": "^6.0.0",
"next": "^12.2.5",
"react": "latest",
"react-dom": "latest",
"react-jazzicon": "^1.0.4"
},
"scripts": {
"postinstall": "npm run apollo:download-schema && npm run apollo:codegen",
"apollo:download-schema": "apollo client:download-schema ./marketplace.schema.json",
"apollo:codegen": "apollo codegen:generate --localSchemaFile=./marketplace.schema.json --target=typescript --tagName=gql",
"dev": "next dev",
"build": "npm run clean && next build",
"export": "next export -o ./build",
"start": "next start",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf ./build/*",
"browse": "open https://github.com/Metestates/metestates/",
"pages:deploy": "bash ./deploy.sh"
},
"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": {
"@emotion/core": "^11.0.0",
"@emotion/css": "^11.5.0",
"@types/graphql": "^14.5.0",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.2",
"@types/react": "^17.0.48",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-next": "^12.2.5",
"gh-pages": "^4.0.0",
"sass": "^1.54.4",
"tailwind": "^4.0.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.17"
}
}