-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.82 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
{
"name": "ens-maxis-gallery",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "yarn env:decrypt && next dev",
"build": "next build",
"start": "node --require ./server-preload.js ./node_modules/.bin/next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"format": "prettier --write src",
"apollo": "gq https://gql-dev.paper.xyz/v1/graphql --header \"X-Hasura-Admin-Secret: 5wdg7nM#Dviz\" --introspect --format json > ./schema/graphql-schema.json && yarn apollo-codegen",
"apollo-codegen": "graphql-codegen --config codegen.yml",
"test": "jest",
"test:e2e": "jest --runInBand -c jest-integration.config.js",
"env:encrypt": "yarn --silent senv encrypt .env.local > .env.local.encrypted",
"env:decrypt": "yarn --silent senv decrypt .env.local.encrypted > .env.local"
},
"resolutions": {
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.16",
"@chakra-ui/react": "^2.4.8",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@moralisweb3/common-evm-utils": "^2.11.1",
"@next/font": "13.1.2",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"date-fns": "^2.29.3",
"eslint": "8.31.0",
"eslint-config-next": "13.1.2",
"eslint-config-sznm": "^1.0.2",
"ethers": "^5.7.2",
"framer-motion": "^8.4.3",
"jotai": "^1.13.0",
"moralis": "^2.11.1",
"next": "13.1.2",
"nextjs-cors": "^2.1.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"typescript": "4.9.4",
"zod": "^3.20.2"
},
"devDependencies": {
"prettier": "^2.8.3",
"senv": "^1.0.2"
}
}