-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.22 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
{
"name": "jwt-explorer",
"version": "0.1.0",
"description": "An example Tauri app to explore & validate JSON Web Token (JWT)",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"tauri": "tauri"
},
"license": "MIT",
"devDependencies": {
"@tauri-apps/cli": "^1.1.0",
"@types/jsoneditor": "^9.9.0",
"@types/node": "^18.7.10",
"autoprefixer": "^10.4.12",
"eslint-plugin-tailwindcss": "^3.6.2",
"install": "^0.13.0",
"postcss": "^8.4.18",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4",
"vite": "^3.1.8",
"vite-plugin-solid": "^2.3.9"
},
"dependencies": {
"@codemirror/lang-json": "^6.0.0",
"@codemirror/state": "^6.1.2",
"@tauri-apps/api": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"classnames": "^2.3.2",
"codemirror": "^6.0.1",
"daisyui": "^2.31.0",
"eslint": "^8.25.0",
"eslint-plugin-solid": "^0.7.3",
"jsoneditor": "^9.9.2",
"solid-js": "^1.5.9",
"ts-results": "^3.3.0"
}
}