-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.62 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
{
"name": "gitignore-patterns",
"description": "A quick web app to visualize .gitignore pattern syntax, using @gerhobbelt/gitignore-parser as its backend.",
"author": "Moritz Rehbach",
"license": "SEE LICENSE IN LICENSE.md",
"version": "0.0.1",
"type": "module",
"engines": {
"node": ">=18.14",
"npm": "^9"
},
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"format": "prettier --write ./src",
"lint": "tsc && eslint --max-warnings=0 ./src",
"preview": "vite preview --host"
},
"dependencies": {
"@geist-ui/core": "2.3.8",
"@geist-ui/icons": "1.0.2",
"@paralleldrive/cuid2": "2.2.0",
"css-has-pseudo": "5.0.2",
"ignore": "^5.2.4",
"lodash-es": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-router": "^6.8.1",
"react-router-dom": "^6.8.1"
},
"devDependencies": {
"@types/lodash-es": "^4.17.6",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@vitejs/plugin-react": "^3.0.0",
"clsx": "^1.2.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^7",
"postcss-nesting": "^11.2.1",
"postcss-preset-env": "^8.0.1",
"prettier": "^2.8.4",
"typescript": "^4.9.3",
"typescript-plugin-css-modules": "^4.2.3",
"vite": "^4.0.0",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "4.0.5"
}
}