-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.02 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
{
"name": "kcc.io",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"commit": "npx git-cz",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/icons": "^4.8.0",
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.1",
"@next/font": "13.0.4",
"@reduxjs/toolkit": "^1.9.0",
"@types/lodash": "^4.14.191",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.8",
"@types/scrollreveal": "^0.0.8",
"@types/styled-components": "^5.1.26",
"@types/styled-system": "^5.1.15",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"antd": "^5.0.1",
"axios": "^1.2.0",
"babel-plugin-import": "^1.13.5",
"bignumber.js": "^9.1.1",
"commitizen": "^4.2.1",
"commitlint": "^12.1.1",
"conventional-changelog-cli": "^2.1.1",
"css-loader": "^6.7.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.2",
"i18next": "^22.0.6",
"lint-staged": "^13.0.3",
"lodash": "^4.17.21",
"next": "13.0.4",
"next-i18next": "^13.0.0",
"next-plugin-antd-less": "^1.8.0",
"nft.storage": "^3.2.2",
"react": "18.2.0",
"react-device-detect": "^2.2.2",
"react-dom": "18.2.0",
"react-fast-marquee": "^1.3.5",
"react-i18next": "^12.0.0",
"react-redux": "^8.0.5",
"redux-localstorage-simple": "^2.5.1",
"scrollreveal": "^4.0.9",
"string-crypto": "^2.0.2",
"styled-components": "^5.3.6",
"styled-system": "^5.1.5",
"tiny-invariant": "^1.3.1",
"typescript": "4.8.4",
"web3": "^1.8.2",
"webpack-env": "^0.8.0"
},
"husky": {
"hooks": {}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write .",
"eslint --fix"
]
},
"devDependencies": {
"eslint": "^8.27.0",
"eslint-config-next": "13.0.3",
"eslint-config-prettier": "^8.5.0"
}
}