-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
133 lines (133 loc) · 3.48 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "ssb-backend-web-app",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/paldeep-singh/ssb-backend-web-app.git",
"author": "Paldeep",
"license": "MIT",
"scripts": {
"start": "webpack serve --config webpack.config.js --env env=development",
"build": "webpack --config webpack.config.js --env env=production",
"lint": "eslint . --ext .tsx"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fontsource/roboto": "^4.5.5",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.7.0",
"cookie-universal": "^2.2.2",
"dotenv": "^16.0.1",
"lodash": "^4.17.21",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-router-dom": "^6.4.3"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.17.9",
"@types/lodash": "^4.14.188",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.1",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.26.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"postcss": "^8.4.18",
"postcss-loader": "^7.0.1",
"prettier": "^2.7.1",
"style-loader": "^3.3.1",
"tailwindcss": "^3.2.1",
"typescript": "^4.6.4",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"react-hooks"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended"
],
"rules": {
"@typescript-eslint/no-explicit-any": 2,
"@typescript-eslint/explicit-function-return-type": 2,
"no-console": 2,
"@typescript-eslint/no-inferrable-types": 0,
"@typescript-eslint/no-non-null-assertion": 2,
"@typescript-eslint/no-unused-vars": 2,
"no-unused-vars": 0,
"react/prop-types": 0,
"no-extra-boolean-cast": 2,
"eqeqeq": 2,
"react/self-closing-comp": 2,
"react-hooks/rules-of-hooks": 2,
"react-hooks/exhaustive-deps": 2,
"react/jsx-uses-react": 0,
"react/react-in-jsx-scope": 0,
"react/jsx-filename-extension": [
1,
{
"extensions": [
".jsx",
".tsx"
]
}
]
},
"overrides": [
{
"files": [
"*/**/*test.ts"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": 0
}
},
{
"files": [
"*.js"
],
"rules": {
"@typescript-eslint/no-var-requires": 0
}
}
],
"settings": {
"react": {
"version": "detect"
}
}
},
"prettier": {
"semi": false,
"trailingComma": "none",
"singleQuote": true,
"printWidth": 80,
"jsxBracketSameLine": true
}
}