-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
48 lines (48 loc) · 1.48 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
{
"name": "vue-apps",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "npm run buildV && npm run buildR",
"buildV": "vite build",
"buildR": "rollup -c rollup.config.js --environment BUILD:production",
"buildDev": "npm run buildDevV && npm run buildDevR",
"buildDevV": "vite build",
"buildDevR": "rollup -c rollup.config.js --environment BUILD:dev",
"serveV": "vite preview --port 5001",
"serve": "npm run buildDev && npm run serveV"
},
"unusedDependencies": {
"@blairmacintyre/web-layer-blair": "^3.4.3"
},
"dependencies": {
"@etherealjs/web-layer": "^3.5.4",
"reveal.js": "^4",
"three": "^0.136.0",
"vue": "^3.0.5",
"mathjs": "^9.4.2",
"detect-browser": "^5.3",
"fast-text-encoding": "latest"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.2.3",
"@rollup/plugin-url": "^6.0.0",
"@rollup/plugin-virtual": "^2.0.3",
"@types/aframe": "^1.0.5",
"@types/three": "^0.130.1",
"@vitejs/plugin-vue": "^1.2.2",
"@vue/compiler-sfc": "^3.0.5",
"postcss-import": "^14.0.2",
"postcss-url": "^10.1.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"typescript": "^4.5.0-dev.20210922",
"vite": "^2.3.0"
}
}