-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
84 lines (84 loc) · 2.31 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
{
"name": "edgeware-website",
"version": "3.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"export": "next build && next export",
"lint": "eslint ./ --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --write '**/*.{ts,tsx}'",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@edgeware/node-types": "3.6.2-wako",
"@headlessui/react": "^1.7.8",
"@polkadot/api": "^9.8.2",
"@polkadot/extension-dapp": "^0.44.6",
"@polkadot/keyring": "10.1.12",
"@polkadot/types": "9.8.2",
"@polkadot/util": "10.1.12",
"@polkadot/util-crypto": "10.1.12",
"@tailwindcss/typography": "^0.5.2",
"autoprefixer": "^10.4.4",
"bignumber.js": "^9.1.1",
"classnames": "^2.3.1",
"eslint-config-prettier": "^8.3.0",
"gh-pages": "^3.2.3",
"next": "12.1.6",
"next-sitemap": "^1.6.192",
"next-svgr": "^0.0.2",
"postcss": "^8.4.12",
"prettier-plugin-tailwindcss": "^0.1.11",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "^3.23.2",
"react-slick": "^0.28.1",
"react-typing-effect": "^2.0.5",
"react-use": "^17.3.1",
"remixicon": "^3.5.0",
"sass": "1.39.0",
"slugify": "^1.6.0",
"tailwindcss": "^3.0.24",
"web3": "^1.5.2",
"whatwg-fetch": "^3.6.2",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/classnames": "^2.3.1",
"@types/gtag.js": "^0.0.7",
"@types/node": "^16.9.0",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/react-slick": "^0.23.7",
"@types/react-typing-effect": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.1.1",
"lint-staged": "^11.1.2",
"prettier": "^2.4.0",
"typescript": "4.6.3"
},
"lint-staged": {
"./**/*.{ts,tsx}": [
"npm run lint:fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}