-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.53 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
{
"name": "nextjs-docs-starter",
"version": "0.1.0",
"private": true,
"homepage": "http://saiemgilani.github.io/wehoop",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@material-ui/core": "^4.12.0",
"@material-ui/icons": "^4.11.2",
"@material-ui/styles": "^4.11.4",
"@tidyjs/tidy": "latest",
"cors": "^2.8.5",
"deployment-badge": "^1.0.0",
"gray-matter": "^4.0.3",
"marked": "^2.1.3",
"next": "^11.0.1",
"node-r-runner": "^0.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sportsdataverse": "^1.1.4",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@types/material-ui": "^0.21.9",
"@types/node": "^16.0.0",
"@types/react": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"env-cmd": "^10.1.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"globby": "^11.0.4",
"highlight.js": "^11.0.1",
"prettier": "^2.3.2",
"react-is": "^17.0.2",
"typescript": "^4.3.5"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"react/prop-types": "off",
"@typescript-eslint/camelcase": [
"off"
],
"@typescript-eslint/missin": "off",
"@typescript-eslint/explicit-function-return-type": [
"warn",
{
"allowExpressions": true
}
],
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/variable-name": "off",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-namespace": [
"off",
{
"allowDeclarations": true
}
]
}
},
"prettier": {
"semi": false,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2,
"excludeFiles": "/src/build/**/*",
"camelcase": [
2,
{
"properties": "never"
}
],
"indent": [
"error",
"tab"
]
}
}