-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.43 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
{
"name": "eiromplays-identityserver-admin-webui",
"private": true,
"version": "0.0.0",
"scripts": {
"prestart": "node aspnetcore-https && node aspnetcore-react",
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "eslint --fix --ext .js,.ts,.tsx ./src --ignore-path .gitignore",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"",
"format": "npm run prettier -- --write",
"check-types": "tsc --project tsconfig.json --pretty --noEmit",
"check-format": "npm run prettier -- --list-different",
"validate-and-build": "npm-run-all --parallel check-types check-format lint build",
"validate": "npm-run-all --parallel check-types && lint-staged"
},
"dependencies": {
"@headlessui/react": "1.6.5",
"@loadable/component": "5.15.2",
"dompurify": "2.3.8",
"eiromplays-ui": "1.5.0-18",
"intersection-observer": "0.12.2",
"marked": "4.0.17",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.32.2",
"react-icons": "4.4.0",
"react-image-crop": "10.0.4",
"react-select": "5.3.2",
"sass": "1.53.0",
"vite-plugin-proxy-middleware": "1.0.2",
"zod": "3.17.3"
},
"devDependencies": {
"@tailwindcss/typography": "0.5.2",
"@tailwindcss/ui": "0.7.2",
"@types/node": "17.0.45",
"@types/react": "18.2.64",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "5.30.4",
"@typescript-eslint/parser": "5.30.4",
"@vitejs/plugin-react": "1.3.2",
"autoprefixer": "10.4.7",
"eslint": "8.18.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"postcss": "8.4.14",
"prettier": "2.7.1",
"tailwindcss": "3.1.4",
"typescript": "4.7.4",
"vite": "2.9.12",
"vite-plugin-env-compatible": "1.1.1",
"vite-plugin-mkcert": "1.7.2",
"vite-tsconfig-paths": "3.5.0"
},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"lint-staged": {
"*.+(ts|tsx)": [
"yarn lint"
]
}
}