73 lines
2.2 KiB
JSON
73 lines
2.2 KiB
JSON
{
|
|
"name": "wisski_cloud_daemon",
|
|
"homepage": "https://github.com/owner/project#readme",
|
|
"version": "1.1.0",
|
|
"description": "API to handle provisions at the WissKI Cloud.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"watch:build": "npx webpack --mode=development",
|
|
"watch:server": "nodemon --watch dist/bundle.js --exec 'node dist/bundle.js'",
|
|
"development": "npm-run-all -p watch:build watch:server",
|
|
"production": "npm-run-all -p build start",
|
|
"build": "npx webpack --mode=production",
|
|
"start": "node ./dist/bundle.js",
|
|
"test": "mocha ./src/test/**/*.js --exit",
|
|
"lint": "eslint './src/**/*.js' --ignore-path .eslintignore"
|
|
},
|
|
"keywords": [
|
|
"node.js",
|
|
"express.js",
|
|
"wisski",
|
|
"websocket"
|
|
],
|
|
"author": "Robert Nasarek",
|
|
"license": "AGPL 2",
|
|
"dependencies": {
|
|
"body-parser": "^1.20.2",
|
|
"copy-webpack-plugin": "^11.0.0",
|
|
"cors": "^2.8.5",
|
|
"crypto": "^1.0.1",
|
|
"dotenv": "^16.3.1",
|
|
"ejs": "^3.1.9",
|
|
"express": "^4.16.4",
|
|
"log4js": "^6.4.0",
|
|
"mariadb": "^3.2.2",
|
|
"mongoose": "^7.5.3",
|
|
"morgan": "^1.10.0",
|
|
"nodemailer": "^6.9.7",
|
|
"pg": "^8.11.3",
|
|
"pg-hstore": "^2.3.4",
|
|
"sequelize": "^6.34.0",
|
|
"swagger-ui-express": "^5.0.0",
|
|
"webpack-node-externals": "^3.0.0",
|
|
"ws": "^8.13.0",
|
|
"yamljs": "^0.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.6",
|
|
"@types/cors": "^2.8.14",
|
|
"@types/ejs": "^3.1.3",
|
|
"@types/express": "^4.17.20",
|
|
"@types/log4js": "^2.3.5",
|
|
"@types/mocha": "^10.0.2",
|
|
"@types/mongoose": "^5.11.97",
|
|
"@types/morgan": "^1.9.6",
|
|
"@types/nodemailer": "^6.4.14",
|
|
"@types/supertest": "^2.0.13",
|
|
"@types/swagger-ui-express": "^4.1.4",
|
|
"@types/ws": "^8.5.5",
|
|
"@types/yamljs": "^0.2.32",
|
|
"@typescript-eslint/eslint-plugin": "^6.7.3",
|
|
"@typescript-eslint/parser": "^6.7.3",
|
|
"chai": "^4.0.2",
|
|
"eslint": "^8.50.0",
|
|
"mocha": "^10.2.0",
|
|
"nodemon": "^3.0.1",
|
|
"npm-run-all": "^4.1.5",
|
|
"supertest": "^6.3.3",
|
|
"ts-loader": "^9.4.4",
|
|
"typescript": "^5.2.2",
|
|
"webpack": "^5.88.2",
|
|
"webpack-cli": "^5.1.4"
|
|
}
|
|
}
|