-
-
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": "vite-template-solid-tauri",
"version": "0.0.0",
"description": "",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"start": "vite start",
"serve": "vite preview",
"android": "tauri android dev",
"android:studio": "tauri android dev [--open]",
"android:build": "tauri android build",
"docs": "jsdoc -c jsdoc.conf.json",
"lint": "eslint --ext .js,.ts,.jsx,.tsx src",
"format": "yarn run lint --fix & yarn prettier --write \"src/**/*.{js,jsx,ts,tsx}\""
},
"type": "module",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.18.0",
"@tailwindcss/forms": "^0.5.3",
"@tauri-apps/api": "^2.0.0-alpha.0",
"@tauri-apps/cli": "^2.0.0-alpha.1",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"autoprefixer": "^10.4.12",
"babel-loader": "^9.0.0",
"better-docs": "^2.7.2",
"eslint": ">=5.16.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-autofix": "^1.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-solid": "^0.11.0",
"https-localhost": "^4.7.1",
"internal-ip": "^7.0.0",
"jsdoc": "^4.0.0",
"postcss": "^8.4.18",
"postcss-import": "^15.0.0",
"prettier": "^2.7.1",
"tailwindcss": "^3.2.0",
"typescript": "^4.8.4",
"vite": "^4.0.3",
"vite-plugin-solid": "^2.5.0"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.8",
"solid-js": "^1.6.6",
"yarn": "^1.22.19"
}
}