-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.63 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.63 KB
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
{
"name": "imc-prosperity-leaderboard",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"process": "ts-node-esm data/process.ts",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint --format codeframe 'src/**/*.ts' 'data/**/*.ts' vite.config.ts",
"lint:prettier": "prettier --check --ignore-path .gitignore '**/*.{ts,html,css,yml}'",
"fix": "yarn fix:eslint && yarn fix:prettier",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "prettier --write --ignore-path .gitignore '**/*.{ts,html,css,yml}'"
},
"dependencies": {
"@tabler/icons": "^2.11.0",
"ag-grid-community": "^29.2.0"
},
"devDependencies": {
"@types/node": "^18.15.6",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-import": "^2.27.5",
"husky": "4.3.8",
"lint-staged": "^13.2.0",
"prettier": "^2.8.6",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"vite": "^4.2.0"
},
"eslintConfig": {
"root": true,
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/recommended",
"plugin:import/typescript",
"prettier"
],
"plugins": [
"@typescript-eslint"
],
"parser": "@typescript-eslint/parser",
"env": {
"browser": true,
"node": true
},
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-member-accessibility": "error",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/explicit-function-return-type": [
"error",
{
"allowExpressions": true
}
],
"import/order": [
"error",
{
"alphabetize": {
"order": "asc",
"caseInsensitive": true
}
}
],
"no-constant-condition": [
"error",
{
"checkLoops": false
}
]
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --concurrent false"
}
},
"lint-staged": {
"*.ts": [
"eslint --format codeframe --fix"
],
"*.{ts,html,css,yml}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 120,
"arrowParens": "avoid"
}
}