-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.86 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
{
"scripts": {
"dev": "vite dev --force --host 0.0.0.0",
"build": "npm run build:dev",
"build:dev": "cross-env NODE_ENV=development vite build --force --mode development",
"build:prod": "cross-env NODE_ENV=production vite build --force --mode production",
"emulate": "npm run emulate:dev",
"emulate:dev": "npm run build:dev && http-server tmp/dist/client -p 4000",
"emulate:prod": "npm run build:prod && http-server tmp/dist/client -p 4000",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.vue .",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx,.vue ./pages/",
"force-deploy": "git branch -D force-deploy && git branch force-deploy && git push origin force-deploy --force"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.1",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/compiler-sfc": "^3.4.15",
"@vue/server-renderer": "^3.4.15",
"bulma": "^0.9.4",
"bulmaswatch": "^0.8.1",
"compression": "^1.7.4",
"cross-fetch": "^4.0.0",
"js-logger": "^1.6.1",
"three": "^0.161.0",
"tweakpane": "^4.0.3",
"unplugin-vue-markdown": "^0.26.0",
"vike": "^0.4.160",
"vike-vue": "^0.6.1",
"vue": "^3.4.15",
"vue-gtag": "^2.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@modyfi/vite-plugin-yaml": "^1.1.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@stylistic/eslint-plugin-js": "^1.6.0",
"@types/gensync": "^1.0.4",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vue": "^9.21.1",
"http-server": "^14.1.1",
"sass": "^1.70.0",
"vite": "^5.0.12",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-glsl": "^1.2.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.12.0"
},
"type": "module"
}