forked from vulkanojs/vulkano-zero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.84 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "vulkano",
"version": "1.20.0",
"description": "A MVC framework using Express 4",
"license": "MIT",
"engines": {
"node": "^20"
},
"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.1.0",
"bluebird": "^3.7.2",
"esbuild": "^0.20.2",
"esbuild-plugin-eslint": "^0.3.12",
"esbuild-plugin-tsc": "^0.4.0",
"esbuild-sass-plugin": "^3.2.0",
"foundation": "^4.2.1",
"foundation-sites": "^6.8.1",
"include-all": "^4.0.3",
"lit": "^3.1.2",
"moment": "^2.30.1",
"underscore": "^1.13.4"
},
"repository": {
"type": "git",
"url": "https://github.com/vulkanojs/vulkanojs"
},
"keywords": [
"node",
"heroku",
"express"
],
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/eslint-parser": "^7.24.1",
"babel-polyfill": "^6.26.0",
"browser-sync": "^3.0.2",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"nodemon": "^3.1.0",
"sass-embedded": "^1.72.0",
"typescript": "^5.4.4"
}
}