-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.78 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
{
"name": "@flyyer/official",
"version": "2.0.1",
"private": true,
"scripts": {
"start": "flyyer start",
"build": "flyyer build",
"deploy": "flyyer deploy",
"format": "xo --fix"
},
"dependencies": {
"@flyyer/better-url": "^2.0.2",
"@flyyer/proxy": "^2.1.2",
"@flyyer/types": "^2.0.3",
"@flyyer/variables": "^2.1.3",
"clsx": "^1.1.1",
"lodash": "^4.17.21",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@flyyer/cli": "^2.0.0",
"@fullhuman/postcss-purgecss": "^4.0.3",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@tailwindcss/line-clamp": "^0.2.1",
"@tailwindcss/postcss7-compat": "npm:@tailwindcss/postcss7-compat",
"@types/lodash": "^4.14.173",
"@types/react": "^17.0.22",
"autoprefixer": "^9",
"dotenv": "^10.0.0",
"eslint-config-xo-react": "^0.25.0",
"eslint-config-xo-typescript": "^0.44.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"postcss": "^7",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"tailwindcss-textshadow": "^2.1.3",
"typescript": "^4.4.3",
"xo": "^0.44.0"
},
"xo": {
"prettier": true,
"space": 2,
"extends": "xo-react",
"rules": {
"new-cap": "off",
"no-unused-vars": "off",
"no-warning-comments": "off",
"react/prop-types": "off",
"react/function-component-definition": "off",
"unicorn/prefer-module": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/triple-slash-reference": "off",
"@typescript-eslint/prefer-optional-chain": "off",
"@typescript-eslint/prefer-nullish-coalescing": "off"
}
}
}