-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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
{
"name": "@flyyer/nice-typography",
"version": "2.0.1",
"private": true,
"scripts": {
"start": "flyyer start",
"build": "flyyer build",
"deploy": "flyyer deploy",
"format": "xo --fix"
},
"author": {
"email": "patricio@flyyer.io",
"name": "Patricio Lopez J."
},
"repository": {
"url": "https://github.com/useflyyer/flyyer-marketplace-nicetypography.git"
},
"license": "MIT",
"dependencies": {
"@flyyer/proxy": "^2.0.0",
"@flyyer/types": "^2.0.0",
"@flyyer/use-fit-text": "^3.0.1",
"@flyyer/use-googlefonts": "^0.4.0",
"@flyyer/variables": "^2.0.0",
"clsx": "^1.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"use-smartcrop": "^1.0.1"
},
"devDependencies": {
"@flyyer/cli": "^2.0.0",
"@fullhuman/postcss-purgecss": "^4.0.3",
"@tailwindcss/postcss7-compat": "^2.2.4",
"@types/react": "^17.0.4",
"@types/tailwindcss": "^2.2.0",
"autoprefixer": "^9",
"dotenv": "^10.0.0",
"endent": "^2.1.0",
"eslint-config-xo-react": "^0.25.0",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"postcss": "^7",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"typescript": "^4.2.4",
"xo": "^0.40.3"
},
"xo": {
"prettier": true,
"space": 2,
"extends": "xo-react",
"rules": {
"new-cap": "off",
"no-unused-vars": "off",
"react/prop-types": "off",
"react/function-component-definition": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/prefer-nullish-coalescing": "off",
"@typescript-eslint/triple-slash-reference": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"unicorn/no-array-callback-reference": "off",
"unicorn/prefer-module": "off"
}
}
}