-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.97 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
{
"name": "xiv-tools",
"version": "0.1.0",
"private": true,
"homepage": "https://xivtools.stocky37.dev",
"type": "module",
"scripts": {
"start": "BROWSER=none react-scripts start",
"build": "react-scripts build",
"build:images": "bin/postinstall",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --ext ts,tsx src",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"postinstall": "bin/postinstall"
},
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.4",
"@mui/material": "^5.0.4",
"@mui/system": "^5.0.4",
"history": "^5.0.1",
"jsoncrush": "^1.1.6",
"mui-image": "^1.0.4",
"pluralize": "^8.0.0",
"qs": "^6.10.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.27.0",
"recoil": "^0.6.1",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.14",
"@types/pluralize": "^0.0.29",
"@types/qs": "^6.9.7",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.9",
"bluebird": "^3.7.2",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.0",
"lint-staged": "^12.3.3",
"node-fetch": "^3.2.1",
"prettier": "^2.4.1",
"react-scripts": "^5.0.0",
"typescript": "^4.4.4",
"yargs": "^17.3.1"
},
"lint-staged": {
"src/*.{ts,tsx,js,jsx,ts,tsx}": "eslint --fix",
"*.{ts,tsx,js,jsx,json,yaml,yml,md,css}": "prettier --write"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
}
}