This repository was archived by the owner on Aug 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.75 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.75 KB
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
88
89
90
91
92
93
94
95
96
{
"name": "@meemproject/epm",
"version": "1.0.5",
"author": "Ken Goldfarb",
"contributors": [
{
"name": "Ken Goldfarb",
"email": "hello@kengoldfarb.com"
}
],
"scripts": {
"local": "next dev -p 3001",
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "eslint --max-warnings=0 --ext=.ts,.tsx . && tsc -p . --noEmit",
"lint:fix": "eslint --fix --ext=.ts,.tsx .",
"release": "semantic-release",
"sls": "serverless",
"test": "echo \"TODO: Implement tests\"",
"localPackageLink": "yarn link @meemproject/api @meemproject/react @meemproject/utils react react-dom @meemproject/meem-contracts",
"apollo": "apollo",
"codegen": "graphql-codegen --config codegen.js"
},
"resolutions": {
"graphql": "^15.7.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"ethers": "^5.6.4"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"@fontsource/inter": "^4.5.10",
"@kengoldfarb/log": "^1.0.5",
"@mantine/core": "4.2.2",
"@mantine/dates": "4.2.2",
"@mantine/form": "^4.2.9",
"@mantine/hooks": "4.2.2",
"@mantine/next": "4.2.2",
"@mantine/notifications": "4.2.2",
"@mantine/prism": "^4.2.11",
"@meemproject/meem-contracts": "^0.19.9",
"@meemproject/react": "^0.19.9",
"@meemproject/sdk": "^0.19.9",
"@next/bundle-analyzer": "^12.1.4",
"@types/superagent": "^4.1.15",
"alchemy-sdk": "^2.2.0",
"blob-util": "^2.0.2",
"classnames": "^2.3.1",
"dayjs": "^1.11.0",
"ethers": "^5.6.4",
"graphql": "^15.7.2",
"graphql-ws": "^5.9.1",
"iconoir-react": "6.1.1",
"js-cookie": "^3.0.1",
"next": "12.1.4",
"react": "18.1.0",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "18.1.0",
"react-ga4": "^2.0.0",
"react-gtm-module": "^2.0.11",
"react-image-file-resizer": "^0.4.7",
"slug": "^8.2.2",
"subscriptions-transport-ws": "^0.11.0",
"superagent": "^7.1.6",
"tabler-icons-react": "^1.50.0",
"use-file-picker": "^1.4.2"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/introspection": "^2.1.1",
"@graphql-codegen/typescript": "^2.4.8",
"@graphql-codegen/typescript-operations": "^2.3.5",
"@graphql-codegen/typescript-react-apollo": "^3.2.11",
"@kengoldfarb/semantic-release-config": "^1.0.3",
"@sentry/webpack-plugin": "^1.17.1",
"@types/react": "18.0.0",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/slug": "^5.0.3",
"@zeit/next-source-maps": "^0.0.3",
"apollo": "^2.33.10",
"eslint": "^8.13.0",
"eslint-config-kengoldfarb": "^1.4.4",
"eslint-plugin-react-hooks": "^4.3.0",
"fs-extra": "^10.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"serverless": "^2.0.0",
"serverless-prune-plugin": "^2.0.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typechain": "^6.0.2",
"typescript": "4.6.3"
}
}