-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.16 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
{
"name": "visor",
"version": "1.0.0",
"description": "Elhacker.net HTML client",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"w:dev": "webpack serve --mode development",
"w:ssr": "webpack serve --mode development --env ssr",
"e:dev": "NODE_HTTP_PORT=8081 nodemon server/server.dev.js",
"e:ssr": "NODE_HTTP_PORT=8081 nodemon server/index.js",
"w:both": "(npm run e:dev & { sleep 3; npm run w:dev; })",
"w:bothssr": "(npm run e:ssr & { sleep 3; npm run w:ssr; })",
"start": "npm run w:both",
"eslint": "eslint . --ext js,jsx --ignore-pattern dist/",
"stylelint": "stylelint **/*.\\(scss\\|sass\\) --ignore-pattern dist/",
"build": "webpack --mode production"
},
"keywords": [
"forum",
"cms"
],
"author": "MinusFour",
"license": "MIT",
"dependencies": {
"@reduxjs/toolkit": "^1.7.2",
"express": "^4.17.2",
"foundation-sites": "^6.6.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.21",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.2.3",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"css-loader": "^6.5.1",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-import-resolver-webpack": "^0.13.2",
"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.6",
"html-webpack-plugin": "^5.5.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mini-css-extract-plugin": "^2.4.7",
"nodemon": "^2.0.15",
"sass": "^1.26.11",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"stylelint": "^14.2.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"webpack": "^5.65.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev": "^1.1.1",
"webpack-dev-server": "^4.7.2",
"webpack-node-externals": "^3.0.0"
},
"optionalDependencies": {
"fsevents": "1.2.13"
}
}