generated from contco/nextjs-typescript-apollo-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
82 lines (82 loc) · 2.42 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
{
"name": "tefi-app",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev --port 3003",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@anchor-protocol/anchor.js": "^1.0.1",
"@apollo/client": "^3.3.18",
"@apollo/federation": "^0.33.6",
"@apollo/gateway": "^0.43.1",
"@contco/core-ui": "https://github.com/contco/core-ui/releases/download/releases/core-ui-1.1.11.tgz",
"@contco/editor": "https://github.com/contco/editor/releases/download/v1.1.19/package.tgz",
"@styled-system/css": "^5.1.5",
"@terra-dev/use-browser-inactive": "^0.15.0",
"@terra-money/terra.js": "3.1.5",
"@terra-money/wallet-provider": "3.6.5",
"@terra-money/webapp-provider": "^0.15.0",
"add": "^2.0.6",
"apollo-server-micro": "^2.23.0",
"axios": "^0.21.1",
"big.js": "^6.1.1",
"bignumber.js": "^9.0.1",
"cors": "^2.8.5",
"date-fns": "^2.22.1",
"deep-equal": "^2.0.5",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"lodash": "^4.17.21",
"mathjs": "^10.6.4",
"next": "12",
"next-pwa": "5.6.0",
"next-seo": "^4.26.0",
"numeral": "^2.0.6",
"react": "^18.2.0",
"react-code-blocks": "^0.0.9-0",
"react-device-detect": "^1.17.0",
"react-dom": "^18.2.0",
"react-query": "^3.17.0",
"react-router-dom": "^5.2.0",
"react-spring": "^9.2.4",
"react-text-transition": "^1.3.0",
"react-timer-hook": "^3.0.4",
"react-tradingview-widget": "^1.3.2",
"react-use-gesture": "^9.1.3",
"react-use-measure": "^2.0.4",
"recharts": "^2.0.10",
"styled-components": "^5.2.1",
"styled-system": "^5.1.5",
"swr": "^1.3.0",
"types": "^0.1.1"
},
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"@types/cors": "^2.8.12",
"@types/node": "^14.14.35",
"@types/react": "18.0.1",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.22.0",
"husky": "^7.0.0",
"lint-staged": "^11.2.3",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
}
}