This repository has been archived by the owner on Apr 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
86 lines (86 loc) · 3.11 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "RSSR",
"version": "0.2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/rssr-org/RSSR.git"
},
"author": "RSSR-ORG",
"license": "MIT",
"bugs": {
"url": "https://github.com/rssr-org/RSSR/issues"
},
"homepage": "https://github.com/rssr-org/RSSR#readme",
"scripts": {
"dev": "node ./provider/server/development.js",
"build": "webpack --config ./provider/webpack/production.js --debug --progress --display-error-details --profile --colors",
"start": "node ./provider/server/production.js",
"start-pm2-low": "pm2 start ./provider/server/production.js --name RSSR",
"start-pm2": "npm run start-pm2-low -- -i max",
"up-low": "pm2 delete RSSR & npm run start-pm2-low",
"up": "pm2 delete RSSR & npm run start-pm2",
"lint": "eslint src",
"test": "echo 'do test'"
},
"dependencies": {
"axios": "^0.21.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"rssr-seo-optimization": "0.0.1",
"serialize-javascript": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"bootstrap": "^4.5.3",
"css-hot-loader": "^1.4.4",
"css-loader": "^3.5.3",
"dotenv-webpack": "^1.7.0",
"eslint": "^7.5.0",
"eslint-config-react-app": "^6.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"expose-loader": "^0.7.5",
"history": "^4.10.1",
"ignore-loader": "^0.1.2",
"jquery": "^3.5.1",
"js-cookie": "^2.2.1",
"local-storage": "^2.0.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"popper.js": "^1.16.1",
"prop-types": "^15.7.2",
"querystringify": "^2.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet-async": "^1.0.6",
"react-lazy-load-image-component": "^1.4.3",
"react-router-dom": "^5.1.2",
"react-toastify": "^5.5.0",
"react-tooltip": "^4.2.5",
"rssr-namespace": "^1.0.1",
"rssr-open-browser": "^1.0.0",
"sass-loader": "^8.0.2",
"terser-webpack-plugin": "^2.3.6",
"trim-redux": "^2.3.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-hot-server-middleware": "^0.6.0"
}
}