-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.7 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
{
"name": "nutlink-explorer",
"version": "0.0.1",
"author": "Five Binaries",
"scripts": {
"deps": "rimraf 'node_modules' && yarn",
"lint": "eslint './src/**/*' --ext .tsx,.ts",
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc"
},
"dependencies": {
"@reduxjs/toolkit": "^1.6.2",
"@tippyjs/react": "^4.2.6",
"axios": "^0.24.0",
"bignumber.js": "^9.0.1",
"color": "^4.1.0",
"date-fns": "^2.27.0",
"next": "^12.0.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-is": "^17.0.2",
"react-loading-skeleton": "^2.2.0",
"react-number-format": "^4.8.0",
"react-redux": "^7.2.6",
"recharts": "^2.1.6",
"redux-logger": "^3.0.6",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@blockfrost/blockfrost-js": "^3.0.2",
"@types/color": "^3.0.2",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/redux-logger": "^3.0.9",
"@types/styled-components": "^5.1.17",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"babel-plugin-styled-components": "^2.0.2",
"eslint": "^7.32.0",
"eslint-config-next": "^12.0.7",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1",
"typescript": "^4.5.3"
}
}