-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.2 KB
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
{
"name": "three-globe-showroom",
"version": "0.0.0",
"scripts": {
"clean": "echo 'Please wait...' && rm -r node_modules package-lock.json dist",
"init": "npm install",
"dev": "vite --port 4040",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview --port 5050 --host",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"dependencies": {
"pinia": "^2.0.35",
"@vueuse/core": "^10.1.0",
"three": "^0.148.0",
"vue": "^3.2.47",
"three-globe": "^2.27.0",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@types/node": "^18.11.18",
"@types/three": "^0.144.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.13",
"eslint": "^8.24.0",
"eslint-plugin-vue": "^9.11.0",
"npm-run-all": "^4.1.5",
"postcss-nested": "^6.0.0",
"postcss-nested-import": "^0.2.0",
"prettier": "^2.8.3",
"typescript": "~4.9.4",
"vite": "^3.2.7",
"vue-tsc": "^1.0.24"
}
}