forked from DeFiCh/defiscan.live
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.31 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
{
"name": "@defichain/scan",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"prepare": "husky install",
"lint": "eslint src content cypress --fix",
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"cypress:open": "cypress open",
"cypress:build": "CYPRESS=true next build",
"cypress:run": "TZ=UTC cypress run --headless --browser chrome",
"playground:start": "docker-compose rm -fsv && docker-compose up"
},
"dependencies": {
"@defichain/jellyfish-address": "^2.36.0",
"@defichain/jellyfish-transaction": "^2.36.0",
"@defichain/playground-api-client": "^2.36.0",
"@defichain/whale-api-client": "^0.33.4",
"@headlessui/react": "^1.5.0",
"@reduxjs/toolkit": "^1.8.1",
"@tailwindcss/line-clamp": "^0.3.1",
"bignumber.js": "^9.0.2",
"classnames": "^2.3.1",
"date-fns": "^2.28.0",
"defichain": "^2.36.0",
"lodash": "^4.17.21",
"next": "12.1.4",
"next-sitemap": "^2.5.17",
"nextjs-progressbar": "^0.0.14",
"qrcode.react": "^3.0.0",
"randomcolor": "^0.6.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-number-format": "^4.9.1",
"@floating-ui/react-dom": "^0.4.3",
"react-redux": "^7.2.8",
"react-schemaorg": "^2.0.0",
"recharts": "^2.1.9",
"schema-dts": "^1.1.0"
},
"devDependencies": {
"@cypress/code-coverage": "^3.9.12",
"@netlify/plugin-nextjs": "^4.3.0",
"@testing-library/cypress": "^8.0.2",
"@types/lodash": "^4.14.175",
"@types/node": "^14.17.20",
"@types/react": "^17.0.30",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.17.0",
"autoprefixer": "^10.4.4",
"babel-plugin-istanbul": "^6.1.1",
"babel-plugin-jsx-remove-data-test-id": "^3.0.0",
"cypress": "^9.5.3",
"eslint": "^7.32.0",
"eslint-config-next": "^12.1.0",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-cypress": "^2.12.1",
"husky": "^7.0.2",
"lint-staged": "^12.3.7",
"postcss": "^8.4.12",
"tailwindcss": "^3.0.23",
"typescript": "4.6.3",
"node-forge": "^1.3.1",
"nanoid": "^3.3.2"
},
"lint-staged": {
"./src/**/*.{ts,tsx,js}": "eslint --fix"
}
}