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": {
|
2022-06-04 05:44:19 +02:00
|
|
|
"@fortawesome/fontawesome-svg-core": "^6.1.1",
|
2021-12-10 17:55:01 +01:00
|
|
|
"@fortawesome/free-brands-svg-icons": "^5.15.4",
|
|
|
|
"@fortawesome/free-regular-svg-icons": "^5.15.4",
|
|
|
|
"@fortawesome/free-solid-svg-icons": "^5.15.4",
|
|
|
|
"@fortawesome/react-fontawesome": "^0.1.16",
|
2021-08-10 04:58:26 +02:00
|
|
|
"compression": "^1.7.4",
|
2021-12-19 02:21:38 +01:00
|
|
|
"express": "^4.17.2",
|
2021-08-15 17:06:48 +02:00
|
|
|
"morgan": "^1.10.0",
|
2021-11-24 22:52:14 +01:00
|
|
|
"prop-types": "^15.7.2",
|
2022-06-04 05:44:05 +02:00
|
|
|
"react": "^18.1.0",
|
|
|
|
"react-dom": "^18.1.0",
|
2021-12-19 02:21:38 +01:00
|
|
|
"react-router-dom": "^6.2.1",
|
2021-08-26 02:16:09 +02:00
|
|
|
"serialize-javascript": "^6.0.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-12 21:10:01 +01:00
|
|
|
"@babel/core": "^7.17.2",
|
|
|
|
"@babel/eslint-parser": "^7.17.0",
|
|
|
|
"@babel/preset-react": "^7.16.7",
|
|
|
|
"babel-preset-razzle": "^4.2.14",
|
2021-11-24 20:22:09 +01:00
|
|
|
"eslint": "^8.3.0",
|
2021-08-26 02:16:09 +02:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
2021-11-24 20:22:09 +01:00
|
|
|
"eslint-plugin-import": "^2.25.3",
|
2021-08-26 02:16:09 +02:00
|
|
|
"eslint-plugin-jsx": "^0.1.0",
|
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2021-10-30 07:46:16 +02:00
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
|
|
"eslint-plugin-promise": "^5.1.1",
|
2021-11-24 20:22:09 +01:00
|
|
|
"eslint-plugin-react": "^7.27.1",
|
2021-10-30 07:46:16 +02:00
|
|
|
"html-webpack-plugin": "^5.5.0",
|
2022-02-12 21:10:01 +01:00
|
|
|
"markdownlint-cli": "^0.31.1",
|
|
|
|
"mini-css-extract-plugin": "^2.5.3",
|
|
|
|
"prettier": "^2.5.1",
|
|
|
|
"razzle": "^4.2.14",
|
|
|
|
"razzle-dev-utils": "^4.2.14",
|
2022-06-04 05:44:05 +02:00
|
|
|
"react-test-renderer": "^18.1.0",
|
2022-02-12 21:10:01 +01:00
|
|
|
"stylelint": "^14.5.0",
|
2021-10-30 07:46:16 +02:00
|
|
|
"stylelint-config-prettier": "^9.0.3",
|
2022-02-12 21:10:01 +01:00
|
|
|
"url": "^0.11.0",
|
|
|
|
"webpack": "^5.68.0",
|
|
|
|
"webpack-dev-server": "^4.7.4"
|
2021-08-10 04:58:26 +02:00
|
|
|
}
|
|
|
|
}
|