2021-08-10 04:58:26 +02:00
|
|
|
{
|
|
|
|
"name": "littlelink-server",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "A server based on littlelink",
|
|
|
|
"main": "app.js",
|
|
|
|
"license": "MIT",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2021-08-26 02:16:09 +02:00
|
|
|
"start": "razzle start",
|
|
|
|
"build": "razzle build",
|
|
|
|
"debug": "yarn start --inspect --inspect-port 9230",
|
|
|
|
"test": "razzle test --env=jsdom",
|
|
|
|
"start:prod": "NODE_ENV=production node build/server.js",
|
2021-09-11 20:40:43 +02:00
|
|
|
"lint": "eslint .",
|
2021-10-06 04:40:51 +02:00
|
|
|
"lint:style": "stylelint ./src/**/*.css ./public/**/*.css",
|
2021-10-17 21:24:04 +02:00
|
|
|
"ci": "yarn lint && yarn lint:style && yarn lint:markdown && yarn test",
|
2021-10-17 21:28:03 +02:00
|
|
|
"lint:markdown": "markdownlint .github/*.md && markdownlint README.md"
|
2021-08-10 04:58:26 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-07-26 01:36:24 +02:00
|
|
|
"@fortawesome/fontawesome-svg-core": "^6.6.0",
|
2024-10-28 20:16:01 +01:00
|
|
|
"@fortawesome/free-brands-svg-icons": "^6.6.0",
|
2024-07-25 06:26:06 +02:00
|
|
|
"@fortawesome/free-regular-svg-icons": "^6.6.0",
|
2024-10-28 20:16:01 +01:00
|
|
|
"@fortawesome/free-solid-svg-icons": "^6.6.0",
|
2024-06-04 16:18:34 +02:00
|
|
|
"@fortawesome/react-fontawesome": "^0.2.2",
|
2021-08-10 04:58:26 +02:00
|
|
|
"compression": "^1.7.4",
|
2024-09-11 20:33:19 +02:00
|
|
|
"express": "^4.20.0",
|
2024-01-10 16:54:41 +01:00
|
|
|
"helmet": "^7.1.0",
|
2021-08-15 17:06:48 +02:00
|
|
|
"morgan": "^1.10.0",
|
2022-07-29 01:43:22 +02:00
|
|
|
"prop-types": "^15.8.1",
|
2024-04-27 17:04:19 +02:00
|
|
|
"react": "^18.3.1",
|
2024-04-30 17:48:01 +02:00
|
|
|
"react-dom": "^18.3.1",
|
2024-09-11 20:33:11 +02:00
|
|
|
"react-router-dom": "^6.26.2",
|
2024-01-10 15:47:16 +01:00
|
|
|
"serialize-javascript": "^6.0.2"
|
2021-08-26 02:16:09 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-08-02 05:24:38 +02:00
|
|
|
"@babel/core": "^7.25.2",
|
2024-10-28 20:07:38 +01:00
|
|
|
"@babel/eslint-parser": "^7.25.9",
|
2024-10-28 20:16:01 +01:00
|
|
|
"@babel/preset-react": "^7.24.7",
|
2023-02-14 05:22:28 +01:00
|
|
|
"babel-preset-razzle": "^4.2.18",
|
2024-02-23 23:12:28 +01:00
|
|
|
"eslint": "^8.57.0",
|
2024-01-10 16:54:41 +01:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2024-09-11 20:32:37 +02:00
|
|
|
"eslint-plugin-import": "^2.30.0",
|
2021-08-26 02:16:09 +02:00
|
|
|
"eslint-plugin-jsx": "^0.1.0",
|
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2024-07-30 05:17:11 +02:00
|
|
|
"eslint-plugin-prettier": "^5.2.1",
|
2024-07-26 01:35:56 +02:00
|
|
|
"eslint-plugin-promise": "^6.6.0",
|
2024-09-11 20:32:52 +02:00
|
|
|
"eslint-plugin-react": "^7.35.2",
|
2024-10-28 20:07:27 +01:00
|
|
|
"html-webpack-plugin": "^5.6.3",
|
2024-10-28 20:16:01 +01:00
|
|
|
"markdownlint-cli": "^0.42.0",
|
2024-08-20 06:36:54 +02:00
|
|
|
"mini-css-extract-plugin": "^2.9.1",
|
2024-07-26 01:36:39 +02:00
|
|
|
"prettier": "^3.3.3",
|
2023-02-14 05:22:28 +01:00
|
|
|
"razzle": "^4.2.18",
|
|
|
|
"razzle-dev-utils": "^4.2.18",
|
2024-04-30 17:48:10 +02:00
|
|
|
"react-test-renderer": "^18.3.1",
|
2024-09-11 20:31:41 +02:00
|
|
|
"stylelint": "^16.9.0",
|
2024-07-26 23:51:19 +02:00
|
|
|
"url": "^0.11.4",
|
2024-10-28 20:06:30 +01:00
|
|
|
"webpack": "^5.95.0",
|
2024-03-22 02:13:26 +01:00
|
|
|
"webpack-dev-server": "^4.15.2"
|
2024-01-10 16:54:41 +01:00
|
|
|
},
|
|
|
|
"resolutions": {
|
|
|
|
"string-width": "4.2.3",
|
|
|
|
"table": "6.8.0"
|
2021-08-10 04:58:26 +02:00
|
|
|
}
|
|
|
|
}
|