forked from rayanfer32/nexus-explorer-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.74 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
{
"name": "nexus-explorer-next",
"private": true,
"version": "1.5.1",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"serve": "next build && next start",
"lint": "next lint",
"format": "prettier -w ./src",
"prepare": "husky install",
"clean": "rimraf .next && rimraf dist",
"clean:deep": "rimraf .next && rimraf dist && rimraf node_modules",
"overrideChangelog": "gren changelog --override"
},
"dependencies": {
"@maxmind/geoip2-node": "^3.5.0",
"@vercel/og": "^0.0.18",
"apexcharts": "^3.35.0",
"axios": "^0.27.2",
"framer-motion": "^10.0.0",
"http-proxy-middleware": "^2.0.6",
"javascript-time-ago": "^2.5.9",
"js-cookie": "^3.0.1",
"next": "12.3.0",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-apexcharts": "^1.4.0",
"react-dom": "18.2.0",
"react-icons": "^4.3.1",
"react-qr-code": "^2.0.7",
"react-query": "^3.38.0",
"react-table": "^7.7.0",
"react-time-ago": "^7.2.1",
"sass": "^1.51.0",
"sharp": "^0.30.7"
},
"devDependencies": {
"@svgr/webpack": "^7.0.0",
"danger": "^11.1.1",
"eslint": "8.14.0",
"eslint-config-next": "12.1.5",
"eslint-config-prettier": "^8.5.0",
"github-release-notes": "^0.17.3",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"prettier": "2.6.2",
"rimraf": "^3.0.2"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write --ignore-unknown"
],
"**/*{.css,scss}": [
"prettier --write --ignore-unknown"
]
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}