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-01 16:21:12 +01:00
|
|
|
"@fortawesome/free-brands-svg-icons": "^6.5.0",
|
2023-12-01 17:32:15 +01:00
|
|
|
"@fortawesome/free-regular-svg-icons": "^6.5.1",
|
2023-12-01 16:21:20 +01:00
|
|
|
"@fortawesome/free-solid-svg-icons": "^6.5.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",
|
2023-05-09 20:41:38 +02:00
|
|
|
"helmet": "^6.2.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",
|
2023-11-27 23:18:17 +01:00
|
|
|
"react-router-dom": "^6.20.0",
|
2023-01-17 03:49:09 +01:00
|
|
|
"serialize-javascript": "^6.0.1"
|
2021-08-26 02:16:09 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-12-01 16:22:01 +01:00
|
|
|
"@babel/core": "^7.23.5",
|
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-11-18 05:57:52 +01:00
|
|
|
"eslint": "^8.54.0",
|
2023-08-04 00:11:18 +02:00
|
|
|
"eslint-config-prettier": "^8.10.0",
|
2023-10-25 06:32:51 +02:00
|
|
|
"eslint-plugin-import": "^2.29.0",
|
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-08-18 05:45:08 +02:00
|
|
|
"eslint-plugin-react": "^7.33.2",
|
2023-06-15 06:14:24 +02:00
|
|
|
"html-webpack-plugin": "^5.5.3",
|
2023-01-10 03:38:24 +01:00
|
|
|
"markdownlint-cli": "^0.33.0",
|
2023-05-20 00:11:40 +02:00
|
|
|
"mini-css-extract-plugin": "^2.7.6",
|
2023-04-25 21:19:26 +02:00
|
|
|
"prettier": "^2.8.8",
|
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-10-18 04:08:31 +02:00
|
|
|
"stylelint": "^15.11.0",
|
2023-02-11 21:07:56 +01:00
|
|
|
"stylelint-config-prettier": "^9.0.5",
|
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"
|
2021-08-10 04:58:26 +02:00
|
|
|
}
|
|
|
|
}
|