forked from rayanfer32/nexus-market-cap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.33 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
83
84
85
86
87
88
89
90
{
"name": "nexus-market-cap",
"description": "A website to list all the tokens on nexus protocol chain.",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"serve": "next build && next start",
"lint": "next lint",
"format": "tsc --pretty --noEmit && prettier --write .",
"format:check": "prettier --check .",
"format:types": "tsc --pretty --noEmit",
"clean": "rimraf .next && rimraf dist",
"clean:cache": "rimraf .next",
"clean:deep": "rimraf .next && rimraf dist && rimraf node_modules",
"pre-commit": "lint-staged",
"prepare": "husky install",
"overrideChangelog": "gren changelog --override"
},
"lint-staged": {
"*.js|jsx|ts|tsx": [
"eslint",
"yarn format",
"yarn lint --fix"
],
"*.css|scss": [
"yarn format"
],
"*.json|md|yml|html": [
"prettier --write"
]
},
"license": "MIT",
"keywords": [
"nexus",
"marketcap",
"nxs",
"blockchain",
"quantum resistance"
],
"bugs": {
"url": "https://github.com/rayanfer32/nexus-market-cap/issues"
},
"homepage": "https://github.com/rayanfer32/nexus-market-cap",
"dependencies": {
"@reduxjs/toolkit": "^1.8.2",
"axios": "^0.27.2",
"daisyui": "^2.24.0",
"goober": "^2.1.10",
"i18next": "^21.8.16",
"i18next-browser-languagedetector": "^6.1.4",
"next": "12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.3",
"react-icons": "^4.4.0",
"react-query": "^3.39.1",
"react-redux": "^8.0.2",
"react-table": "^7.8.0",
"sharp": "^0.30.7"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/node": "17.0.21",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-table": "^7.7.12",
"autoprefixer": "^10.4.8",
"danger": "^11.0.7",
"eslint": "8.11.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"prettier": "^2.6.0",
"rimraf": "^3.0.2",
"sass": "^1.49.9",
"tailwindcss": "^3.1.8",
"typescript": "4.6.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}