-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.7 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.7 KB
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
55
56
57
58
59
60
{
"name": "vulkano-app",
"version": "2.1.0",
"description": "A MVC framework using Express 4",
"license": "MIT",
"engines": {
"node": "^20 || ^22"
},
"main": "app.js",
"author": "Vulkano Team",
"repository": {
"type": "git",
"url": "git+https://github.com/vulkanojs/vulkano.git"
},
"keywords": [
"node",
"heroku",
"express"
],
"scripts": {
"dev": "node ./node_modules/concurrently/dist/bin/concurrently -n VITE,VULKANO -c green,magenta 'vite' './node_modules/nodemon/bin/nodemon.js --inspect --trace-deprecation --trace-warnings'",
"start": "node app.js"
},
"dependencies": {
"@vulkano/core": "^1.15.6",
"axios": "^1.13.1",
"concurrently": "^9.2.1",
"dotenv": "^17.2.3",
"gsap": "^3.13.0",
"moment": "^2.30.1",
"nodemon": "^3.1.10",
"promise.prototype.finally": "^3.1.8",
"underscore": "^1.13.7",
"vite-plugin-dev-manifest": "^1.4.1",
"vite-plugin-eslint": "^1.8.1",
"vue": "^3.5.22",
"vue-router": "^4.6.3"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/eslint-parser": "^7.28.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-jsx": "^7.27.1",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@babel/preset-stage-1": "^7.8.3",
"@vitejs/plugin-vue": "^5.2.1",
"babel-loader": "^10.0.0",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"sass": "^1.93.2",
"vite": "^6.2.6",
"webpack": "^5.102.1"
}
}