-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 2.17 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
{
"name": "fanfou-export",
"homepage": "https://export.fanfou.pro",
"version": "0.1.0",
"private": true,
"dependencies": {
"@react-pdf/renderer": "^1.6.13",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@testing-library/user-event": "^7.2.1",
"async": "^3.1.1",
"fanfou-sdk-browser": "^0.6.0",
"file-saver": "^2.0.2",
"moment": "^2.24.0",
"nes.css": "^2.3.0",
"papaparse": "^5.1.1",
"query-string": "^6.11.0",
"react": "^18.2.0",
"react-countup": "^4.3.3",
"react-dom": "^18.2.0",
"react-scripts": "^4.0.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "xo",
"eject": "react-scripts eject",
"deploy": "gh-pages -d build"
},
"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"
]
},
"xo": {
"parser": "babel-eslint",
"envs": [
"node",
"browser"
],
"extends": [
"xo-react"
],
"plugins": "react",
"ignores": [
"hooks/**",
"platforms/**",
"plugins/**",
"res/**",
"www/**"
],
"rules": {
"import/no-unassigned-import": [
2,
{
"allow": [
"**/style/*.css",
"**/*.css",
"typeface-**"
]
}
],
"import/extensions": [
"error",
"never",
{
"svg": "always",
"css": "always",
"ttf": "always"
}
],
"react/prop-types": 0,
"node/file-extension-in-import": 0,
"unicorn/no-abusive-eslint-disable": 0,
"eslint-comments/no-unused-disable": 0
}
},
"settings": {
"react": {
"version": "18"
}
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint-config-xo": "^0.38.0",
"eslint-config-xo-react": "^0.25.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.2.3",
"xo": "^0.44.0"
}
}