2022-02-13 14:03:04 +01:00
|
|
|
{
|
2022-03-02 16:50:25 +01:00
|
|
|
"name": "musictopus",
|
2022-02-13 14:03:04 +01:00
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Simple application to manage your CD/Vinyl collection",
|
|
|
|
"scripts": {
|
|
|
|
"start": "node ./dist/bin/www",
|
2022-10-28 22:40:02 +02:00
|
|
|
"run:all": "npm-run-all build sass uglify start",
|
2023-01-17 16:24:54 +01:00
|
|
|
"watch": "npx nodemon -e js,scss",
|
2022-02-23 08:41:30 +01:00
|
|
|
"sass": "npx sass sass/index.scss public/css/main.css -s compressed --color",
|
2022-10-28 22:40:02 +02:00
|
|
|
"uglify": "npx gulp",
|
2022-02-13 14:03:04 +01:00
|
|
|
"prebuild": "rimraf dist",
|
2023-01-17 16:24:54 +01:00
|
|
|
"build": "npx babel ./src --out-dir dist --copy-files",
|
2022-02-13 14:03:04 +01:00
|
|
|
"test": "jest",
|
2023-01-17 16:24:54 +01:00
|
|
|
"prepare": "npx husky install"
|
2022-02-13 14:03:04 +01:00
|
|
|
},
|
2022-02-13 17:59:42 +01:00
|
|
|
"engines": {
|
2023-07-22 18:19:21 +02:00
|
|
|
"node": "16.x || 18.x",
|
2022-02-13 17:59:42 +01:00
|
|
|
"yarn": "1.x"
|
|
|
|
},
|
2022-02-13 14:03:04 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-03-02 16:50:25 +01:00
|
|
|
"url": "git@git.darkou.fr:dbroqua/MusicTopus.git"
|
2022-02-13 14:03:04 +01:00
|
|
|
},
|
|
|
|
"author": {
|
|
|
|
"name": "Damien Broqua",
|
|
|
|
"email": "contact@darkou.fr",
|
|
|
|
"url": "https://www.darkou.fr"
|
|
|
|
},
|
|
|
|
"license": "GPL-3.0-or-later",
|
|
|
|
"devDependencies": {
|
|
|
|
"eslint": "^8.9.0",
|
2022-02-13 17:59:42 +01:00
|
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"eslint-plugin-import": "^2.25.4",
|
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2022-02-13 14:03:04 +01:00
|
|
|
"husky": "^7.0.4",
|
|
|
|
"lint-staged": "^12.3.3",
|
|
|
|
"nodemon": "^2.0.15",
|
2022-03-06 14:38:26 +01:00
|
|
|
"prettier": "^2.5.1"
|
2022-02-13 14:03:04 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-03-06 14:38:26 +01:00
|
|
|
"@babel/cli": "^7.17.0",
|
|
|
|
"@babel/core": "^7.17.2",
|
|
|
|
"@babel/preset-env": "^7.16.11",
|
2022-04-09 00:07:22 +02:00
|
|
|
"aws-sdk": "^2.1110.0",
|
2022-02-15 11:03:20 +01:00
|
|
|
"axios": "^0.26.0",
|
2022-02-13 17:59:42 +01:00
|
|
|
"connect-ensure-login": "^0.1.1",
|
|
|
|
"connect-flash": "^0.1.1",
|
|
|
|
"connect-mongo": "^4.6.0",
|
|
|
|
"cookie-parser": "^1.4.6",
|
2022-04-10 16:04:50 +02:00
|
|
|
"date-fns": "^2.28.0",
|
|
|
|
"date-fns-tz": "^1.3.3",
|
2022-02-13 18:07:53 +01:00
|
|
|
"debug": "^4.3.3",
|
2022-02-15 11:03:20 +01:00
|
|
|
"disconnect": "^1.2.2",
|
2022-02-13 17:59:42 +01:00
|
|
|
"ejs": "^3.1.6",
|
2022-03-04 16:33:45 +01:00
|
|
|
"excel4node": "^1.7.2",
|
2022-02-13 17:59:42 +01:00
|
|
|
"express": "^4.17.2",
|
|
|
|
"express-session": "^1.17.2",
|
2022-10-28 22:40:02 +02:00
|
|
|
"gulp": "^4.0.2",
|
|
|
|
"gulp-babel": "^8.0.0",
|
|
|
|
"gulp-concat": "^2.6.1",
|
|
|
|
"gulp-sourcemaps": "^3.0.0",
|
|
|
|
"gulp-uglify": "^3.0.2",
|
2022-03-06 14:38:26 +01:00
|
|
|
"joi": "^17.6.0",
|
2022-02-18 08:14:34 +01:00
|
|
|
"knacss": "^8.0.4",
|
2022-02-13 17:59:42 +01:00
|
|
|
"mongoose": "^6.2.1",
|
|
|
|
"mongoose-unique-validator": "^3.0.0",
|
2022-09-01 10:20:13 +02:00
|
|
|
"nodemailer": "^6.7.8",
|
2022-03-06 14:38:26 +01:00
|
|
|
"npm-run-all": "^4.1.5",
|
2022-02-13 17:59:42 +01:00
|
|
|
"passport": "^0.5.2",
|
2022-04-09 00:07:22 +02:00
|
|
|
"passport-custom": "^1.1.1",
|
2022-02-15 11:03:20 +01:00
|
|
|
"passport-http": "^0.3.0",
|
|
|
|
"passport-local": "^1.0.0",
|
2022-03-06 14:38:26 +01:00
|
|
|
"rimraf": "^3.0.2",
|
2022-02-15 11:03:20 +01:00
|
|
|
"sass": "^1.49.7",
|
2022-09-01 11:37:57 +02:00
|
|
|
"svg-captcha": "^1.4.0",
|
2022-04-09 00:07:22 +02:00
|
|
|
"uuid": "^8.3.2",
|
2022-02-15 11:03:20 +01:00
|
|
|
"vue": "^3.2.31"
|
2022-02-13 14:03:04 +01:00
|
|
|
},
|
|
|
|
"nodemonConfig": {
|
2023-01-17 16:24:54 +01:00
|
|
|
"exec": "npm run run:all",
|
2022-02-13 14:03:04 +01:00
|
|
|
"watch": [
|
2022-02-15 16:45:14 +01:00
|
|
|
"src/*",
|
2022-10-28 22:40:02 +02:00
|
|
|
"sass/*",
|
|
|
|
"javascripts/*"
|
2022-02-13 14:03:04 +01:00
|
|
|
],
|
|
|
|
"ignore": [
|
|
|
|
"**/__tests__/**",
|
|
|
|
"*.test.js",
|
|
|
|
"*.spec.js"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"testEnvironment": "node"
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"src/**/*.js": "eslint --cache --fix"
|
|
|
|
}
|
|
|
|
}
|