-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.66 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
{
"name": "ynab-labeler",
"private": true,
"version": "0.2.0",
"type": "module",
"engines": {
"npm": ">=9",
"node": ">=20"
},
"scripts": {
"build": "tsc && vite build",
"clean:build": "rm -rf build/",
"clean:node-modules": "rm -rf node_modules/",
"dev": "vite",
"lint:fix": "npm run lint --fix",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier-check": "prettier --check .",
"prettier": "prettier --write .",
"preview": "vite preview",
"signal:serial": "npm run ts-check && npm run test-silent && npm run lint && npm run prettier-check",
"signal": "concurrently --names \"TS,JEST,LINT,PRETTIER\" -c \"bgBlack.bold,bgMagenta.bold,bgRed.bold,bgCyan.bold\" \"npm run ts-check\" \"npm run test-silent\" \"npm run lint\" \"npm run prettier-check\"",
"test": "jest",
"test-silent": "jest --silent",
"ts-check": "tsc --noEmit",
"ts-check-masked": "npm run ts-check",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
"@fontsource/inter": "5.0.18",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "5.15.20",
"@mui/joy": "5.0.0-beta.36",
"@mui/material": "5.15.21",
"async-sema": "3.1.1",
"dayjs": "1.11.11",
"lodash": "4.17.21",
"nullthrows": "1.1.1",
"papaparse": "^5.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"title-case": "4.3.1",
"uuid": "^10.0.0",
"ynab": "2.3.0",
"zod": "3.23.8"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/lodash": "4.17.6",
"@types/papaparse": "^5.3.14",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitejs/plugin-react": "4.3.1",
"concurrently": "8.2.1",
"eslint": "^8.45.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "2.3.0",
"husky": "^8.0.3",
"jest": "29.7.0",
"lint-staged": "^14.0.1",
"prettier": "3.0.3",
"ts-jest": "29.2.2",
"typescript": "^5.0.2",
"vercel": "35.1.0",
"vite": "5.3.3"
},
"lint-staged": {
"**/*": "prettier --check --ignore-unknown",
"*.(js|jsx|cjs|ts|tsx)": [
"eslint --cache --max-warnings=0"
]
}
}