]> git.localhorst.tv Git - alttp.git/blob - package.json
install bases system
[alttp.git] / package.json
1 {
2     "private": true,
3     "scripts": {
4         "dev": "npm run development",
5         "development": "mix",
6         "watch": "mix watch",
7         "watch-poll": "mix watch -- --watch-options-poll=1000",
8         "hot": "mix watch --hot",
9         "prod": "npm run production",
10         "production": "mix --production"
11     },
12     "eslintConfig": {
13         "env": {
14             "browser": true
15         },
16         "extends": [
17             "eslint:recommended",
18             "plugin:react/recommended"
19         ],
20         "parserOptions": {
21             "ecmaVersion": 2018,
22             "sourceType": "module"
23         },
24         "rules": {
25             "max-len": [
26                 "warn",
27                 {
28                     "code": 100,
29                     "tabWidth": 4
30                 }
31             ],
32             "no-extra-parens": [
33                 "warn",
34                 "all",
35                 {
36                     "nestedBinaryExpressions": false
37                 }
38             ],
39             "no-mixed-operators": "error",
40             "no-trailing-spaces": "error",
41             "semi": [
42                 "error",
43                 "always"
44             ]
45         }
46     },
47     "devDependencies": {
48         "@babel/preset-react": "^7.13.13",
49         "@popperjs/core": "^2.10.2",
50         "axios": "^0.25",
51         "bootstrap": "^5.1.3",
52         "eslint": "^8.10.0",
53         "eslint-plugin-react": "^7.29.3",
54         "laravel-mix": "^6.0.6",
55         "lodash": "^4.17.19",
56         "postcss": "^8.1.14",
57         "react": "^17.0.2",
58         "react-dom": "^17.0.2",
59         "resolve-url-loader": "^5.0.0",
60         "sass": "^1.32.11",
61         "sass-loader": "^11.0.1"
62     },
63     "dependencies": {
64         "formik": "^2.2.9",
65         "i18next": "^21.6.13",
66         "i18next-browser-languagedetector": "^6.1.3",
67         "laravel-echo": "^1.11.3",
68         "moment": "^2.29.1",
69         "numeral": "^2.0.6",
70         "pusher-js": "^7.0.6",
71         "qs": "^6.10.3",
72         "react-bootstrap": "^2.2.0",
73         "react-i18next": "^11.15.6",
74         "react-router-bootstrap": "^0.26.0",
75         "react-router-dom": "^6.2.2",
76         "toastr": "^2.1.4",
77         "yup": "^0.32.11"
78     }
79 }