-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 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
85
86
87
88
{
"name": "championship-manager-93-tools",
"version": "0.0.1",
"description": "Championship Manager 93 (plus add-ons) editing tools and documentation",
"private": false,
"license": "UNLICENSED",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts"
},
"type": "module",
"scripts": {
"test": "vitest",
"coverage": "rm -rf coverage/ && vitest run --coverage --silent",
"format": "prettier --write ./src",
"lint": "prettier --check ./src && eslint --max-warnings 0 --color --ext .ts,.tsx,.js --cache --cache-location .cache/eslint .",
"typecheck": "tsc -b",
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject"
},
"dependencies": {
"buffer": "6.0.3",
"clsx": "2.1.0",
"date-fns": "2.30.0",
"file-saver": "2.0.5",
"jszip": "3.10.1",
"papaparse": "5.4.1",
"ramda": "0.29.1",
"react": "18.2.0",
"react-device-detect": "2.2.3",
"react-dom": "18.2.0",
"react-dropzone": "14.2.3",
"react-router": "6.22.0",
"react-router-dom": "6.22.0",
"react-scripts": "5.0.1",
"web-vitals": "2.1.0"
},
"devDependencies": {
"@faker-js/faker": "8.3.1",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "13.0.0",
"@testing-library/user-event": "13.2.1",
"@types/eslint": "8.56.2",
"@types/file-saver": "2.0.7",
"@types/jest": "27.0.1",
"@types/minimist": "1.2.5",
"@types/node": "16.7.13",
"@types/papaparse": "5.3.14",
"@types/ramda": "0.29.10",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "6.19.1",
"@typescript-eslint/parser": "6.19.1",
"@vitest/coverage-v8": "1.1.1",
"c8": "9.1.0",
"eslint": "8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-no-only-tests": "3.1.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"happy-dom": "^13.3.8",
"minimist": "1.2.8",
"prettier": "3.2.4",
"prettier-plugin-tailwindcss": "0.5.11",
"tailwindcss": "3.4.1",
"ts-node": "10.9.2",
"tsx": "4.7.0",
"typescript": "5.3.3",
"uuid": "9.0.1",
"vite-tsconfig-paths": "4.3.1",
"vitest": "1.1.1"
},
"browser": {
"fs": false,
"os": false,
"path": false
},
"browserslist": {
"production": [">0.2%", "not dead", "not op_mini all"],
"development": ["last 1 chrome version", "last 1 firefox version", "last 1 safari version"]
}
}