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-03-28 05:07:21 +02:00
|
|
|
"@fortawesome/fontawesome-svg-core": "^6.4.0",
|
2023-03-28 03:31:06 +02:00
|
|
|
"@fortawesome/free-brands-svg-icons": "^6.4.0",
|
2023-03-28 03:32:49 +02:00
|
|
|
"@fortawesome/free-regular-svg-icons": "^6.4.0",
|
2023-03-28 03:30:40 +02:00
|
|
|
"@fortawesome/free-solid-svg-icons": "^6.4.0",
|
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",
|
2022-11-30 21:14:26 +01:00
|
|
|
"helmet": "^6.0.1",
|
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",
|
2023-04-03 04:14:37 +02:00
|
|
|
"react-router-dom": "^6.10.0",
|
2023-01-17 03:49:09 +01:00
|
|
|
"serialize-javascript": "^6.0.1"
|
2021-08-26 02:16:09 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-04-03 04:15:47 +02:00
|
|
|
"@babel/core": "^7.21.4",
|
2023-03-15 03:56:18 +01:00
|
|
|
"@babel/eslint-parser": "^7.21.3",
|
2022-06-29 04:49:07 +02:00
|
|
|
"@babel/preset-react": "^7.18.6",
|
2023-02-14 05:22:28 +01:00
|
|
|
"babel-preset-razzle": "^4.2.18",
|
2023-04-03 04:14:04 +02:00
|
|
|
"eslint": "^8.37.0",
|
2023-03-21 01:18:28 +01:00
|
|
|
"eslint-config-prettier": "^8.8.0",
|
2023-01-17 03:44:53 +01:00
|
|
|
"eslint-plugin-import": "^2.27.5",
|
2021-08-26 02:16:09 +02:00
|
|
|
"eslint-plugin-jsx": "^0.1.0",
|
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2022-07-01 01:33:27 +02:00
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2022-10-21 07:20:13 +02:00
|
|
|
"eslint-plugin-promise": "^6.1.1",
|
2023-01-30 22:28:03 +01:00
|
|
|
"eslint-plugin-react": "^7.32.2",
|
2021-10-30 07:46:16 +02:00
|
|
|
"html-webpack-plugin": "^5.5.0",
|
2023-01-10 03:38:24 +01:00
|
|
|
"markdownlint-cli": "^0.33.0",
|
2023-03-19 04:53:45 +01:00
|
|
|
"mini-css-extract-plugin": "^2.7.5",
|
2023-03-26 03:07:14 +02:00
|
|
|
"prettier": "^2.8.7",
|
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",
|
2023-04-04 02:43:29 +02:00
|
|
|
"stylelint": "^15.4.0",
|
2023-02-11 21:07:56 +01:00
|
|
|
"stylelint-config-prettier": "^9.0.5",
|
2022-02-12 21:10:01 +01:00
|
|
|
"url": "^0.11.0",
|
2023-04-07 03:18:26 +02:00
|
|
|
"webpack": "^5.78.0",
|
2023-04-04 02:43:44 +02:00
|
|
|
"webpack-dev-server": "^4.13.2"
|
2021-08-10 04:58:26 +02:00
|
|
|
}
|
|
|
|
}
|