-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.32 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
{
"name": "movieapp",
"version": "1.7.2",
"scripts": {
"dev": "vite --host --port 3000",
"serve": "vite preview",
"build": "run-p typecheck build-only",
"build-only": "vite build",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.cjs --fix --ignore-path .gitignore",
"release": "standard-version",
"release-patch": "standard-version --release-as patch",
"publish": "git push --follow-tags origin master"
},
"dependencies": {
"@supabase/supabase-js": "^2.21.0",
"axios": "^1.3.6",
"pinia": "^2.0.34",
"standard-version": "^9.5.0",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.15.11",
"@vitejs/plugin-vue": "^4.1.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-plugin-vue": "^9.11.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.23",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7",
"tailwindcss": "^3.3.1",
"typescript": "~5.0.4",
"user-agent-data-types": "^0.3.1",
"vite": "^4.2.2",
"vite-plugin-pwa": "^0.14.7",
"vue-tsc": "^1.2.0"
}
}