-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.93 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
{
"homepage": "http://rschyboll.github.io/",
"devDependencies": {
"@preact/preset-vite": "^2.5.0",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-vertical-timeline-component": "^3.3.3",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@vitejs/plugin-react-swc": "^3.1.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^4.0.0",
"imagetools-core": "^3.2.3",
"prettier": "^2.7.1",
"process": "^0.11.10",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.57.1",
"sharp": "^0.29.1",
"typescript": "^4.7.4",
"typescript-plugin-css-modules": "^4.1.1",
"yarn-upgrade-all": "^0.7.1"
},
"dependencies": {
"@fontsource/lato": "^4.5.8",
"i18next": "^21.8.14",
"i18next-browser-languagedetector": "^6.1.4",
"preact": "^10.11.3",
"primeicons": "^6.0.1",
"primereact": "^8.7.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.1",
"react-icons": "^4.4.0",
"react-toggle-dark-mode": "^1.1.1",
"react-vertical-timeline-component": "^3.5.2",
"vite": "^4.0.3"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist"
},
"alias": {
"@/*": "./src/$1"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"trailingComma": "all",
"singleQuote": true,
"semi": true,
"importOrder": [
"<THIRD_PARTY_MODULES>",
"^@/(.*)$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"importOrderParserPlugins": [
"typescript",
"jsx",
"decorators-legacy"
]
}
}