2021-08-09 21:58:26 -05:00
|
|
|
{
|
|
|
|
|
"name": "littlelink-server",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"description": "A server based on littlelink",
|
|
|
|
|
"main": "app.js",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"private": true,
|
|
|
|
|
"scripts": {
|
2021-08-25 19:16:09 -05: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 13:40:43 -05:00
|
|
|
"lint": "eslint .",
|
2021-10-05 21:40:51 -05:00
|
|
|
"lint:style": "stylelint ./src/**/*.css ./public/**/*.css",
|
2021-10-17 14:24:04 -05:00
|
|
|
"ci": "yarn lint && yarn lint:style && yarn lint:markdown && yarn test",
|
2021-10-17 14:28:03 -05:00
|
|
|
"lint:markdown": "markdownlint .github/*.md && markdownlint README.md"
|
2021-08-09 21:58:26 -05:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2023-12-01 10:49:42 -06:00
|
|
|
"@fortawesome/fontawesome-svg-core": "^6.5.1",
|
2023-12-06 11:58:10 -06:00
|
|
|
"@fortawesome/free-brands-svg-icons": "^6.5.1",
|
2023-12-01 10:32:15 -06:00
|
|
|
"@fortawesome/free-regular-svg-icons": "^6.5.1",
|
2023-12-06 11:58:18 -06:00
|
|
|
"@fortawesome/free-solid-svg-icons": "^6.5.1",
|
2022-06-29 19:06:52 -05:00
|
|
|
"@fortawesome/react-fontawesome": "^0.2.0",
|
2021-08-09 21:58:26 -05:00
|
|
|
"compression": "^1.7.4",
|
2022-10-11 23:36:15 -05:00
|
|
|
"express": "^4.18.2",
|
2023-05-09 13:41:38 -05:00
|
|
|
"helmet": "^6.2.0",
|
2021-08-15 17:06:48 +02:00
|
|
|
"morgan": "^1.10.0",
|
2022-07-28 18:43:22 -05:00
|
|
|
"prop-types": "^15.8.1",
|
2022-06-14 18:32:00 -05:00
|
|
|
"react": "^18.2.0",
|
2022-06-15 17:14:50 -05:00
|
|
|
"react-dom": "^18.2.0",
|
2023-12-15 13:31:27 -06:00
|
|
|
"react-router-dom": "^6.21.0",
|
2023-01-16 20:49:09 -06:00
|
|
|
"serialize-javascript": "^6.0.1"
|
2021-08-25 19:16:09 -05:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2023-12-11 20:34:36 -06:00
|
|
|
"@babel/core": "^7.23.6",
|
2023-11-12 02:53:27 +00:00
|
|
|
"@babel/eslint-parser": "^7.23.3",
|
2023-11-11 20:51:42 -06:00
|
|
|
"@babel/preset-react": "^7.23.3",
|
2023-02-13 22:22:28 -06:00
|
|
|
"babel-preset-razzle": "^4.2.18",
|
2023-12-06 11:54:56 -06:00
|
|
|
"eslint": "^8.55.0",
|
2023-08-03 17:11:18 -05:00
|
|
|
"eslint-config-prettier": "^8.10.0",
|
2023-12-15 13:31:08 -06:00
|
|
|
"eslint-plugin-import": "^2.29.1",
|
2021-08-25 19:16:09 -05:00
|
|
|
"eslint-plugin-jsx": "^0.1.0",
|
|
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2022-06-30 18:33:27 -05:00
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2022-10-21 00:20:13 -05:00
|
|
|
"eslint-plugin-promise": "^6.1.1",
|
2023-08-17 22:45:08 -05:00
|
|
|
"eslint-plugin-react": "^7.33.2",
|
2023-06-14 23:14:24 -05:00
|
|
|
"html-webpack-plugin": "^5.5.3",
|
2023-01-09 20:38:24 -06:00
|
|
|
"markdownlint-cli": "^0.33.0",
|
2023-05-19 17:11:40 -05:00
|
|
|
"mini-css-extract-plugin": "^2.7.6",
|
2023-04-25 14:19:26 -05:00
|
|
|
"prettier": "^2.8.8",
|
2023-02-13 22:22:28 -06:00
|
|
|
"razzle": "^4.2.18",
|
|
|
|
|
"razzle-dev-utils": "^4.2.18",
|
2022-06-15 17:14:30 -05:00
|
|
|
"react-test-renderer": "^18.2.0",
|
2023-10-17 21:08:31 -05:00
|
|
|
"stylelint": "^15.11.0",
|
2023-02-11 14:07:56 -06:00
|
|
|
"stylelint-config-prettier": "^9.0.5",
|
2023-09-15 17:36:59 -05:00
|
|
|
"url": "^0.11.3",
|
2023-07-19 10:19:19 -05:00
|
|
|
"webpack": "^5.88.2",
|
2023-06-14 23:13:01 -05:00
|
|
|
"webpack-dev-server": "^4.15.1"
|
2021-08-09 21:58:26 -05:00
|
|
|
}
|
|
|
|
|
}
|