Files
DeemixFix/server/package.json

74 lines
1.6 KiB
JSON
Raw Normal View History

{
2021-07-02 12:37:02 +02:00
"name": "@deemix-gui/deemix-server",
2021-07-18 21:59:41 +02:00
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node dist/app.js",
"build": "webpack --env production",
2022-03-09 11:21:46 +01:00
"sourcemap": "webpack --env production sourcemap",
"watch": "webpack --watch",
"test": "jest",
"test-watch": "jest --watch"
},
2021-07-02 18:57:06 +01:00
"bin": "./dist/app.js",
2021-07-02 12:37:02 +02:00
"pkg": {
"scripts": "./dist/**/*.js",
2021-07-20 14:52:01 +02:00
"assets": [
"../webui/public/**/*",
"../package.json"
],
2021-07-02 18:57:06 +01:00
"targets": [
"node20-linux-x64",
"node20-win-x64",
"node20-macos-x64"
2021-07-02 18:57:06 +01:00
]
},
"dependencies": {
"@types/cookie-parser": "1.4.7",
"@types/debug": "4.1.12",
"@types/ejs": "3.1.5",
"@types/express": "4.17.21",
2022-02-28 14:58:25 +01:00
"@types/express-session": "^1.17.3",
"@types/morgan": "1.9.9",
"@types/node": "14.14.37",
2022-02-28 14:58:25 +01:00
"@types/ramda": "0.27.40",
"@types/uuid": "8.3.0",
"@types/ws": "7.4.1",
"@types/yargs": "17.0.32",
"bufferutil": "4.0.8",
"cookie-parser": "1.4.6",
"date-fns": "^3.6.0",
2021-07-02 18:57:06 +01:00
"debug": "2.6.9",
"deemix": "../deemix",
"deezer-js": "../deezer-js",
2021-07-02 18:57:06 +01:00
"dotenv": "8.2.0",
"ejs": "3.1.10",
"express": "4.19.2",
"express-session": "^1.17.3",
"got": "^11.8.2",
"memorystore": "1.6.7",
2021-07-02 18:57:06 +01:00
"morgan": "1.10.0",
"nodemon": "2.0.7",
"nodemon-webpack-plugin": "4.8.2",
2022-02-28 14:58:25 +01:00
"ramda": "0.27.1",
"ts-loader": "9.5.1",
2022-02-28 14:58:25 +01:00
"utf-8-validate": "5.0.5",
"uuid": "8.3.2",
"webpack": "5.93.0",
"webpack-cli": "5.1.4",
"winston": "3.13.1",
2022-02-28 14:58:25 +01:00
"ws": "7.4.5",
"yargs": "17.7.2"
2021-07-02 18:57:06 +01:00
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/supertest": "6.0.2",
2021-07-02 18:57:06 +01:00
"jest": "26.6.3",
2022-02-28 14:58:25 +01:00
"supertest": "6.1.3",
2021-07-02 18:57:06 +01:00
"ts-jest": "26.5.4",
"ts-node": "9.1.1",
"ts-node-dev": "1.1.6",
2022-02-28 14:58:25 +01:00
"typescript": "4.2.4"
}
}