littlelink-server/package.json

55 lines
1.7 KiB
JSON
Raw Normal View History

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": {
"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 .",
"lint:style": "stylelint ./src/**/*.css ./public/**/*.css",
"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": {
"compression": "^1.7.4",
"express": "^4.17.1",
"morgan": "^1.10.0",
2021-11-24 22:52:14 +01:00
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.0.2",
"serialize-javascript": "^6.0.0"
},
"devDependencies": {
2021-11-24 20:22:09 +01:00
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
2021-10-30 07:46:16 +02:00
"@babel/preset-react": "^7.16.0",
2021-11-24 20:22:09 +01:00
"babel-preset-razzle": "^4.2.7",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
2021-11-24 20:22:09 +01:00
"eslint-plugin-import": "^2.25.3",
"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",
2021-11-24 20:22:09 +01:00
"markdownlint-cli": "^0.30.0",
"mini-css-extract-plugin": "^2.4.5",
2021-10-30 07:46:16 +02:00
"prettier": "^2.4.1",
2021-11-24 20:22:09 +01:00
"razzle": "^4.2.7",
"razzle-dev-utils": "^4.2.7",
"react-test-renderer": "^17.0.2",
2021-11-24 20:22:09 +01:00
"stylelint": "^14.1.0",
2021-10-30 07:46:16 +02:00
"stylelint-config-prettier": "^9.0.3",
2021-11-24 20:22:09 +01:00
"webpack": "^5.64.3",
"webpack-dev-server": "^4.5.0"
2021-08-10 04:58:26 +02:00
}
}