-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 3.21 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
91
{
"name": "alumni-hub",
"private": "false",
"version": "0.0.2",
"contributors": [
"Nikolaos Kontakis<[email protected]>"
],
"description": "A hub about Polkadot Blockcahin Academy Alumnis and everything around it",
"type": "module",
"license": "GPL-3.0-only",
"scripts": {
"dev": "vite",
"build": "tsc && vite build --base '/'",
"build:pages": "tsc && vite build --base '/alumni-hub/'",
"deploy:pages": "yarn build:pages && gh-pages -d build",
"preview": "vite preview",
"deploy": "gh-pages -d build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 && prettier --check .",
"lint:fix": "eslint . --ext ts,tsx --fix && prettier --write .",
"lint:scripts": "npx prettier --write ./.scripts",
"locale:order": "node ./.scripts/localeOrderKeys.cjs",
"locale:validate": "node ./.scripts/localeValidate.cjs",
"test": "echo 'no test'",
"visualizer": "vite-bundle-visualizer"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mdx-js/react": "^3.1.0",
"@mdx-js/rollup": "^3.1.0",
"@polkadot-ui/core": "^2.0.2",
"@polkadot-ui/react": "^0.5.5",
"@polkadot/keyring": "^12.6.2",
"@polkadot/react-hooks": "^0.39.1",
"@polkadot/util": "^12.6.2",
"bignumber.js": "^9.1.2",
"buffer": "^6.0.3",
"date-fns": "^3.6.0",
"framer-motion": "^11.11.11",
"i18next": "^23.16.5",
"i18next-browser-languagedetector": "^7.2.1",
"react": "^18.3.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.1.2",
"react-helmet": "^6.1.0",
"react-i18next": "^14.1.3",
"react-icons": "^5.3.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.28.0",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@types/mdx": "^2.0.13",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@types/react-helmet": "^6.1.11",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react-swc": "^3.7.1",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prefer-arrow-functions": "^3.4.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-unused-imports": "^3.2.0",
"gh-pages": "^6.2.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^3.2.4",
"sass": "^1.80.6",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}