Files

112 lines
2.8 KiB
JSON
Raw Permalink Normal View History

2020-12-04 20:16:24 +01:00
{
2026-05-12 16:43:39 +04:00
"name": "pawol.nu",
"description": "Application web spécialisés dans la transcription et la traduction de productions musicales. (front)",
"version": "1.0.0",
2024-02-05 09:23:44 +01:00
"private": false,
2024-11-15 13:55:45 +04:00
"license": "AGPL-3.0",
"author": {
"name": "Cédric Famibelle-Pronzola",
2026-04-16 17:19:33 +04:00
"email": "contact@cedric-pronzola.dev",
"url": "https://cedric-pronzola.dev"
},
"repository": {
"type": "git",
2026-05-12 16:43:39 +04:00
"url": "git+https://codeberg.org/OKI/pawol.nu.git"
},
2020-12-04 20:16:24 +01:00
"scripts": {
"lint": "xo",
2026-04-21 18:35:54 +04:00
"dev": "next dev -p 3001",
2020-12-04 20:16:24 +01:00
"build": "next build",
"start": "next start -p 3001"
2020-12-04 20:16:24 +01:00
},
"dependencies": {
2023-07-22 12:57:18 +04:00
"@emotion/cache": "^11.11.0",
2024-10-21 09:53:49 +04:00
"@emotion/react": "^11.13.3",
2023-07-22 12:57:18 +04:00
"@emotion/server": "^11.11.0",
2024-07-31 19:34:41 +02:00
"@emotion/styled": "^11.13.0",
2023-07-22 12:57:18 +04:00
"@fontsource/roboto": "^5.0.5",
2020-12-15 08:49:26 +01:00
"@icons-pack/react-simple-icons": "^3.13.0",
2026-04-21 18:35:54 +04:00
"@mui/icons-material": "^9.0.0",
"@mui/lab": "^9.0.0-beta.2",
"@mui/material": "^9.0.0",
"@mui/material-pigment-css": "^9.0.0",
"@mui/styles": "^6.4.8",
"@pigment-css/react": "^0.0.30",
2022-10-26 00:30:55 +04:00
"@svgr/webpack": "^6.5.0",
2020-12-09 02:42:48 +01:00
"axios": "^0.21.0",
2020-12-11 01:34:49 +01:00
"compression": "^1.7.4",
2020-12-17 09:03:36 +01:00
"date-fns": "^2.16.1",
"dotenv": "^16.0.0",
2020-12-11 01:34:49 +01:00
"express": "^4.17.1",
2024-04-17 06:56:31 +04:00
"file-saver": "^2.0.5",
2022-09-05 21:33:18 +04:00
"lodash": "^4.17.21",
2026-04-16 12:52:51 +04:00
"next": "16.2.4",
2026-04-16 13:53:51 +04:00
"next-auth": "^5.0.0-beta.31",
2023-03-28 21:32:39 +04:00
"next-pwa": "5.6.0",
2026-04-21 18:35:54 +04:00
"nextjs-toploader": "^3.9.17",
"nodemailer": "^6.7.2",
2022-01-22 21:52:44 +04:00
"nprogress": "^0.2.0",
2026-04-16 12:52:51 +04:00
"react": "19.2.5",
"react-dom": "19.2.5",
2022-01-17 22:28:31 +04:00
"react-swipeable-views": "^0.13.9",
2023-07-22 12:57:43 +04:00
"react-virtuoso": "^4.4.0",
2023-07-30 00:26:31 +04:00
"sharp": "^0.29.3",
"slugify": "^1.6.6"
2020-12-04 20:16:24 +01:00
},
"devDependencies": {
2026-04-16 12:52:51 +04:00
"@eslint/eslintrc": "^3",
2022-01-18 08:49:56 +04:00
"eslint": "^8.7.0",
2026-04-16 12:52:51 +04:00
"eslint-config-next": "16.2.4",
2022-01-18 08:49:56 +04:00
"eslint-config-xo-nextjs": "^4.0.3",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"xo": "^0.47.0"
2020-12-04 20:16:24 +01:00
},
"xo": {
"extends": "xo-nextjs",
"semicolon": false,
"space": 2,
"envs": [
"browser",
"es2020"
],
"rules": {
2021-05-27 03:27:50 +02:00
"react/no-danger": "off",
2023-07-22 12:58:15 +04:00
"react/require-default-props": "off",
2020-12-17 09:04:28 +01:00
"react/react-in-jsx-scope": "off",
2020-12-18 21:54:15 +01:00
"camelcase": "off",
2021-05-22 23:37:44 +02:00
"react/boolean-prop-naming": "off",
2021-09-21 20:53:29 +02:00
"comma-dangle": "off",
2021-05-22 23:37:44 +02:00
"new-cap": [
2021-05-27 23:52:16 +02:00
"error",
{
"capIsNewExceptions": [
2022-02-03 01:58:29 +04:00
"CredentialsProvider",
2022-10-23 23:24:43 +04:00
"TwitterProvider",
2022-10-26 00:30:55 +04:00
"GoogleProvider",
2022-10-28 08:28:35 +04:00
"GitHubProvider",
2021-05-27 23:52:16 +02:00
"NextAuth"
]
2021-05-22 23:37:44 +02:00
}
2021-07-22 21:19:03 +02:00
],
"import/extensions": [
"error",
"never",
2021-09-21 21:27:10 +02:00
{
"png": "always",
"jpg": "always",
2022-02-09 22:18:02 +04:00
"js": "always",
"css": "always"
2021-09-21 21:27:10 +02:00
}
],
2022-01-22 18:09:20 +04:00
"node/prefer-global/process": "off",
2022-02-19 21:46:08 +04:00
"func-names": "off",
"unicorn/prevent-abbreviations": "off"
2020-12-04 20:16:24 +01:00
}
2022-09-03 12:09:32 +04:00
},
"engines": {
2026-04-16 17:58:01 +04:00
"node": ">=20.0.0 <=24.x.x",
2022-09-03 12:09:32 +04:00
"npm": ">=6.0.0"
2020-12-04 20:16:24 +01:00
}
}