-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "nuxt-vite",
"version": "0.0.2",
"description": "Nuxt Vite (kinda sorta)",
"main": "index.js",
"private": true,
"workspaces": [
"vite"
],
"scripts": {
"dev": "npm-run-all dev:nuxt dev:vite --parallel",
"dev:nuxt": "xdg-open http://localhost:3000 && nuxt &",
"dev:vite": "xdg-open http://localhost:3001 && vite serve vite --port 3001 &",
"build:vite": "vite build",
"postinstall": "cd vite && npm i"
},
"dependencies": {
"nuxt": "^2.12.2"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/register": "latest",
"@nuxtjs/eslint-config": "^1.0.1",
"@nuxtjs/eslint-module": "^1.2.0",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-nuxt": "^0.5.2",
"eslint-plugin-prettier": "^3.1.3",
"npm-run-all": "^4.1.5"
},
"keywords": [
"Nuxt",
"Vite",
"Vue",
"vuejs"
],
"author": "Richard Schloss",
"license": "MIT"
}