-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 980 Bytes
/
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
{
"name": "vue-next-example",
"version": "1.0.0",
"description": "Vue 3 example with vue-router without using any transpiler",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node task/localhost.js",
"prerender": "node task/prerender.mjs",
"dev": "vite",
"build": "vite build",
"serve": "vite preview"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/arijs/vue-next-example.git"
},
"keywords": [
"vue",
"vue-router",
"vue-next"
],
"author": "Rafael Hengles <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/arijs/vue-next-example/issues"
},
"homepage": "https://github.com/arijs/vue-next-example#readme",
"dependencies": {
"@arijs/vue-prerender": "^0.0.5",
"@vue/compiler-dom": "^3.0.11",
"@vue/server-renderer": "^3.0.4",
"express": "^4.17.1",
"terser": "^5.5.1",
"vue": "^3.0.4",
"vue-router": "^4.0.2",
"vite": "^2.3.4"
}
}