-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 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
{
"name": "@wolkeneis/<<NAME>>",
"version": "0.0.0",
"private": true,
"description": "<<NAME>>",
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/wolkeneis/<<NAME>>.git"
},
"author": "Frooastside <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/wolkeneis/<<NAME>>/issues"
},
"homepage": "https://<<NAME>>.wolkeneis.dev/",
"engines": {
"node": "*",
"vscode": "^1.22.0",
"npm": "^8.x.x",
"pnpm": "7.x.x"
},
"main": "<<MAIN>>",
"bin": {},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --ext ts,jsx,tsx .",
"lint:fix": "eslint --fix --ext ts,jsx,tsx .",
"pretty": "prettier --write .",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "^18.11.3",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.5",
"@types/react-redux": "^7.1.24",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@vitejs/plugin-react": "^3.0.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"prettier": "2.8.1",
"sass": "^1.55.0",
"typescript": "^4.8.4",
"vite": "^4.0.3"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.10",
"@reduxjs/toolkit": "^1.8.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.4",
"react-router-dom": "^6.4.2"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --ext ts,jsx,tsx --cache --fix",
"*.{js,ts,jsx,tsx,css,md,json}": "prettier --write"
}
}