-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 973 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
35
36
37
38
{
"name": "Roadrunner",
"version": "0.1.0",
"author": "Andreas Bigger <abigger@nascent.xyz>",
"description": "A rate analysis library built as a serverless Next.js application to easily query the Graph",
"license": "MIT",
"private": true,
"main": "index.ts",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "prettier --check .",
"format": "prettier --write ."
},
"resolutions": {
"styled-components": "^5"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"axios": "^0.21.1",
"husky": "^5.1.3",
"next": "10.0.5",
"react": "17.0.1",
"react-dark-mode-toggle": "^0.2.0",
"react-dom": "17.0.1",
"react-icons": "^4.2.0",
"styled-components": "^5.2.1",
"swr": "^0.4.2",
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
}
}