-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 786 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 786 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
{
"name": "vulkano",
"version": "3.0.0",
"private": true,
"engines": {
"node": ">=22"
},
"main": "app.js",
"scripts": {
"dev": "node ./node_modules/concurrently/dist/bin/concurrently -n VITE,APP -c green,magenta 'vp dev' './node_modules/nodemon/bin/nodemon.js --inspect'",
"start": "node app.js",
"build": "vp build",
"preview": "vp preview",
"lint": "vp lint"
},
"dependencies": {
"@vulkano/core": "^1.20.0",
"concurrently": "^9.2.1",
"dotenv": "^17.4.2",
"vite-plugin-dev-manifest": "catalog:",
"vue": "^3.5.34",
"vue-router": "^5.0.7"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.7",
"nodemon": "^3.1.14",
"vite-plus": "catalog:",
"sass": "^1.99.0"
},
"packageManager": "pnpm@11.1.1"
}