-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 991 Bytes
/
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
{
"name": "nft-browser",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"mesh:serve": "graphql-mesh serve --require ts-node/register/transpile-only",
"mesh:codegen": "graphql-mesh typescript --output ./mesh/generated.ts --require ts-node/register/transpile-only"
},
"dependencies": {
"@apollo/client": "3.1.1",
"@graphql-mesh/cli": "^0.30.1",
"@graphql-mesh/graphql": "^0.17.10",
"@graphql-mesh/runtime": "^0.16.6",
"@graphql-mesh/transform-naming-convention": "^0.6.49",
"apollo-server-micro": "^2.25.0",
"cross-fetch": "^3.1.4",
"deepmerge": "^4.2.2",
"graphql": "^15.5.0",
"lodash": "^4.17.20",
"next": "^10.2.3",
"prop-types": "^15.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.8.0"
},
"devDependencies": {
"@types/react": "17.0.9",
"ts-node": "^10.0.0",
"typescript": "4.3.2"
}
}