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": {
|
2023-12-01 17:49:42 +01:00
|
|
|
"@fortawesome/fontawesome-svg-core": "^6.5.1",
|
2023-12-06 18:58:10 +01:00
|
|
|
"@fortawesome/free-brands-svg-icons": "^6.5.1",
|
2023-12-01 17:32:15 +01:00
|
|
|
"@fortawesome/free-regular-svg-icons": "^6.5.1",
|
2023-12-06 18:58:18 +01:00
|
|
|
"@fortawesome/free-solid-svg-icons": "^6.5.1",
|
2022-06-30 02:06:52 +02:00
|
|
|
"@fortawesome/react-fontawesome": "^0.2.0",
|
2021-08-10 04:58:26 +02:00
|
|
|
"compression": "^1.7.4",
|
2022-10-12 06:36:15 +02:00
|
|
|
"express": "^4.18.2",
|
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",
|
2022-06-15 01:32:00 +02:00
|
|
|
"react": "^18.2.0",
|
2022-06-16 00:14:50 +02:00
|
|
|
"react-dom": "^18.2.0",
|
2024-01-21 17:10:52 +01:00
|
|
|
"react-router-dom": "^6.21.3",
|
2024-01-10 15:47:16 +01:00
|
|
|
"serialize-javascript": "^6.0.2"
|
2021-08-26 02:16:09 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-01-02 03:47:14 +01:00
|
|
|
"@babel/core": "^7.23.7",
|
2023-11-12 03:53:27 +01:00
|
|
|
"@babel/eslint-parser": "^7.23.3",
|
2023-11-12 03:51:42 +01:00
|
|
|
"@babel/preset-react": "^7.23.3",
|
2023-02-14 05:22:28 +01:00
|
|
|
"babel-preset-razzle": "^4.2.18",
|
2023-12-20 02:47:40 +01:00
|
|
|
"eslint": "^8.56.0",
|
2024-01-10 16:54:41 +01:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2023-12-15 20:31:08 +01:00
|
|
|
"eslint-plugin-import": "^2.29.1",
|
2021-08-26 02:16:09 +02:00
|
|
|
"eslint-plugin-jsx": "^0.1.0",
|
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2024-01-10 16:54:41 +01:00
|
|
|
"eslint-plugin-prettier": "^5.1.3",
|
2022-10-21 07:20:13 +02:00
|
|
|
"eslint-plugin-promise": "^6.1.1",
|
2023-08-18 05:45:08 +02:00
|
|
|
"eslint-plugin-react": "^7.33.2",
|
2023-12-20 02:47:16 +01:00
|
|
|
"html-webpack-plugin": "^5.6.0",
|
2024-01-10 16:54:41 +01:00
|
|
|
"markdownlint-cli": "^0.38.0",
|
2024-01-16 17:38:00 +01:00
|
|
|
"mini-css-extract-plugin": "^2.7.7",
|
2024-01-21 17:09:02 +01:00
|
|
|
"prettier": "^3.2.4",
|
2023-02-14 05:22:28 +01:00
|
|
|
"razzle": "^4.2.18",
|
|
|
|
"razzle-dev-utils": "^4.2.18",
|
2022-06-16 00:14:30 +02:00
|
|
|
"react-test-renderer": "^18.2.0",
|
2024-01-21 17:08:39 +01:00
|
|
|
"stylelint": "^16.2.0",
|
2023-09-16 00:36:59 +02:00
|
|
|
"url": "^0.11.3",
|
2023-07-19 17:19:19 +02:00
|
|
|
"webpack": "^5.88.2",
|
2023-06-15 06:13:01 +02:00
|
|
|
"webpack-dev-server": "^4.15.1"
|
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
|
|
|
}
|
|
|
|
}
|