mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-14 12:07:15 +01:00
26 lines
1.5 KiB
JSON
26 lines
1.5 KiB
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"api-docs:validate": "./node_modules/raml2html/bin/raml2html --validate www/api/docs.raml > /dev/null",
|
|
"api-docs:build": "./node_modules/raml2html/bin/raml2html --validate --theme raml2html-werk-theme --input www/api/docs.raml --output www/api/docs-tmp.html && cat www/api/docs-tmp.html | sed -e 's/<\\/head>/<link rel=\\\"stylesheet\\\" href=\\\"\\.\\/assets\\/docs_custom\\.css\\\"><\\/head>/' > www/api/docs.html && rm www/api/docs-tmp.html",
|
|
"dev": "npm run development",
|
|
"development": "./node_modules/cross-env/src/bin/cross-env-shell.js NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
|
|
"watch": "npm run development -- --watch",
|
|
"hot": "./node_modules/cross-env/src/bin/cross-env-shell.js NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --disable-host-check --config=node_modules/laravel-mix/setup/webpack.config.js",
|
|
"prod": "npm run production",
|
|
"production": "./node_modules/cross-env/src/bin/cross-env-shell.js NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
|
|
},
|
|
"devDependencies": {
|
|
"raml2html": "^7.6.0",
|
|
"raml2html-werk-theme": "^1.1.0",
|
|
"cross-env": "^7.0",
|
|
"laravel-mix": "^5.0.1",
|
|
"resolve-url-loader": "^3.1.0",
|
|
"sass": "^1.15.2",
|
|
"sass-loader": "^8.0.0"
|
|
},
|
|
"dependencies": {
|
|
"vue": "^2.6.12"
|
|
}
|
|
}
|