-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.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
{
"name": "x-fan",
"version": "0.2.0",
"private": true,
"dependencies": {
"@rematch/core": "^1.1.0",
"fanfou-sdk-browser": "^0.6.0",
"framework7": "^5.0.0",
"framework7-icons": "^3.0.0",
"framework7-react": "^5.0.0",
"material-design-icons-iconfont": "^5.0.1",
"prop-types": "^15.6.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-redux": "^7.0.0",
"react-scripts": "^3.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "xo && npm run build",
"eject": "react-scripts eject",
"deploy": "gh-pages -d build"
},
"engines": {
"node": ">=12"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint-config-xo": "^0.29.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^2.0.0",
"gh-pages": "^2.0.1",
"xo": "^0.26.1"
},
"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"
]
}
],
"unicorn/no-abusive-eslint-disable": 0,
"eslint-comments/no-unused-disable": 0
}
},
"settings": {
"react": {
"version": "16"
}
},
"homepage": "https://litomore.github.io/x-fan"
}