-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
115 lines (115 loc) · 3.57 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
{
"name": "ustaxes",
"version": "0.1.23",
"private": true,
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.61",
"@material-ui/pickers": "^3.3.11",
"@tauri-apps/api": "^1.5.6",
"@tauri-apps/cli": "^1.6.1",
"ajv": "^8.17.1",
"date-fns": "^2.30.0",
"lodash": "^4.17.21",
"loglevel": "^1.9.1",
"papaparse": "^5.4.1",
"pdf-lib": "^1.17.1",
"react": "^17.0.2",
"react-data-table-component": "^7.6.2",
"react-device-detect": "^2.2.3",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.52.0",
"react-number-format": "^4.9.4",
"react-redux": "^8.1.3",
"react-router": "^6.3.0",
"react-router-dom": "^6.21.1",
"react-scripts": "^5.0.1",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"rooks": "^7.14.1",
"ts-json-schema-generator": "^2.3.0",
"typescript": "^4.9.5"
},
"scripts": {
"start": "node ./notice.js && ts-node ./scripts/env.ts && ts-node ./scripts/setup.ts && concurrently npm:dev",
"dev": "craco start",
"build": "ts-node ./scripts/env.ts && ts-node ./scripts/setup.ts && craco build",
"test": "ts-node ./scripts/env.ts && ts-node ./scripts/setup.ts && craco test",
"eject": "craco eject",
"desktop-release": "tauri build",
"desktop": "tauri dev",
"test:report": "ts-node ./scripts/env.ts && npm run test -- --coverage .",
"tauri": "ts-node ./scripts/env.ts && tauri",
"schema-generate": "ts-node ./scripts/env.ts && node ./setup.js",
"lint": "eslint ./src --ext ts,js,tsx,jsx --max-warnings=0 && prettier -c .",
"lint:fix": "eslint ./src --fix --ext ts,js,tsx,jsx && prettier --write .",
"prettier": "prettier --write .",
"formgen": "ts-node ./scripts/formgen.ts",
"prepare": "ts-node ./scripts/env.ts && husky"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@craco/craco": "^7.1.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.9",
"@types/papaparse": "^5.3.14",
"@types/react": "^17.0.73",
"@types/react-dom": "^18.2.18",
"@types/react-helmet": "^6.1.11",
"@types/react-redux": "^7.1.33",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"concurrently": "^9.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.34.3",
"fast-check": "^2.25.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.9",
"prettier": "2.8.8",
"ts-node": "^10.9.2",
"typescript-eslint": "7.17.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown .",
"*.{ts,js,tsx,jsx}": "eslint ./src --cache --fix"
},
"jest": {
"moduleNameMapper": {
"^ustaxes/(.*)": "<rootDir>/src/$1"
},
"transformIgnorePatterns": [
"/node_modules/(?!@tauri-apps)"
]
},
"engines": {
"yarn": "please-use-npm"
}
}