-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
78 lines (78 loc) · 2.36 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
{
"dependencies": {
"@microsoft/fetch-event-source": "^2.0.1",
"@tanstack/react-query": "^5.4.3",
"@tauri-apps/api": "^1.5.1",
"axios": "^1.4.0",
"clsx": "^1.2.1",
"date-fns": "^2.30.0",
"github-markdown-css": "^5.2.0",
"idb-keyval": "^6.2.1",
"lodash": "^4.17.21",
"plyr-react": "^5.3.0",
"prettier": "^3.0.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-markdown": "^8.0.7",
"react-media-recorder": "^1.6.6",
"react-modal": "^3.16.1",
"react-range-slider-input": "^3.0.7",
"react-router-dom": "^6.10.0",
"react-select": "^5.7.3",
"react-simple-code-editor": "^0.13.1",
"react-syntax-highlighter": "^15.5.0",
"react-toastify": "^9.1.3",
"react-tooltip": "^5.13.1",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"usehooks-ts": "^2.9.1",
"uuid": "^9.0.0",
"yet-another-react-lightbox": "^3.11.3",
"zustand": "^4.3.7"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.4.3",
"@tauri-apps/cli": "^1.5.6",
"@types/lodash": "^4.14.194",
"@types/node": "^18.7.10",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.15",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.6",
"@types/react-modal": "^3.16.0",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/uuid": "^9.0.1",
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.0.0",
"postcss": "^8.4.23",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.5",
"vite": "^4.2.1",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "^4.2.0"
},
"name": "prem-app",
"private": true,
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"eslint": "eslint './src/**/*.{ts,tsx}'",
"fmt": "yarn eslint --fix && yarn prettier --write",
"infra:down": "bash ./scripts/down.sh",
"infra:up": "bash ./scripts/up.sh",
"lint": "yarn eslint && yarn prettier --check",
"prettier": "prettier --write src/",
"prettier:check": "prettier --check src/",
"preview": "vite preview",
"tauri": "tauri"
},
"type": "module",
"version": "0.2.2"
}