-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 956 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 956 Bytes
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
{
"name": "@dimensionalpocket/3d-client-previewer",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 5050",
"test:unit": "vitest --environment jsdom",
"lint": "standardx --fix --verbose --plugin vue \"**/*.{js,vue}\"",
"lint:ci": "standardx --verbose --plugin vue \"**/*.{js,vue}\""
},
"dependencies": {
"@dimensionalpocket/3d-client-three": "github:dimensionalpocket/3d-client-three#0.4.0",
"pinia": "2.0.33",
"vue": "3.2.47",
"vue-router": "4.1.6"
},
"devDependencies": {
"@vitejs/plugin-vue": "2.3.4",
"@vue/test-utils": "2.3.1",
"eslint-plugin-vue": "8.7.1",
"jsdom": "19.0.0",
"standardx": "7.0.0",
"vite": "2.9.15",
"vitest": "0.29.2"
},
"eslintConfig": {
"extends": "plugin:vue/vue3-essential",
"env": {
"vue/setup-compiler-macros": true
}
},
"engines": {
"node": ">= 16.14.2"
}
}