This repository was archived by the owner on Apr 1, 2026. It is now read-only.
forked from vulkanojs/vulkano-zero
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.87 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.87 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",
"version": "1.20.0",
"description": "A MVC framework using Express 4",
"license": "MIT",
"engines": {
"node": "^22"
},
"main": "app.js",
"scripts": {
"dev": "node ./node_modules/concurrently/dist/bin/concurrently -c green,cyan,yellow 'yarn nodemon' 'yarn esbuild' 'yarn browsersync'",
"dev:fe": "node ./node_modules/concurrently/dist/bin/concurrently -n esbuild,browsersync -c green,cyan 'yarn esbuild' 'yarn browsersync'",
"start": "node app.js",
"nodemon": "./node_modules/nodemon/bin/nodemon.js --inspect",
"browsersync": "./node_modules/browser-sync/dist/bin.js start --config 'client/config/bs-config.js'",
"esbuild": "node client/config/esbuild-config.mjs",
"rm:node_modules": "rm -rf node_modules/* node_modules/.*"
},
"dependencies": {
"@vulkano/core": "^1.14.1",
"bluebird": "^3.7.2",
"esbuild": "^0.25.0",
"esbuild-plugin-eslint": "^0.3.12",
"esbuild-plugin-tsc": "^0.5.0",
"esbuild-sass-plugin": "^3.3.1",
"foundation": "^4.2.1",
"foundation-sites": "^6.9.0",
"include-all": "^4.0.3",
"lit": "^3.2.1",
"moment": "^2.30.1",
"motion-ui": "^2.0.8",
"underscore": "^1.13.7"
},
"repository": {
"type": "git",
"url": "https://github.com/vulkanojs/vulkanojs"
},
"keywords": [
"node",
"heroku",
"express"
],
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/eslint-parser": "^7.26.8",
"babel-polyfill": "^6.26.0",
"browser-sync": "^3.0.3",
"concurrently": "^9.1.2",
"eslint": "8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"nodemon": "^3.1.9",
"sass-embedded": "^1.85.1",
"typescript": "^5.8.2"
}
}