-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.75 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
{
"name": "angled",
"version": "1.1.0",
"private": true,
"scripts": {
"start": "flyyer start",
"build": "flyyer build",
"deploy": "flyyer deploy",
"format": "xo --fix"
},
"dependencies": {
"@flyyer/goerr": "^3.0.0",
"@flyyer/proxy": "^2.1.2",
"@flyyer/types": "^2.0.2",
"@flyyer/variables": "^2.1.3",
"chroma-js": "^2.1.2",
"clsx": "^1.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@flyyer/cli": "^3.0.0-beta.4",
"@parcel/config-default": "^2.0.0-rc",
"@parcel/transformer-image": "^2.0.0-rc",
"@tailwindcss/line-clamp": "^0.2.2",
"@types/chroma-js": "^2.1.3",
"@types/react": "^17.0.27",
"autoprefixer": "^10.3.7",
"dotenv": "^10.0.0",
"endent": "^2.1.0",
"eslint-config-xo-react": "^0.25.0",
"eslint-config-xo-typescript": "^0.45.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"postcss": "^8.3.9",
"tailwindcss": "^2.2.16",
"typescript": "^4.4.3",
"xo": "^0.45.0"
},
"xo": {
"prettier": true,
"space": 2,
"extends": "xo-react",
"rules": {
"new-cap": "off",
"no-unused-vars": "off",
"no-warning-comments": "warn",
"react/prop-types": "off",
"react/no-array-index-key": "off",
"react/function-component-definition": "off",
"unicorn/prefer-module": "off",
"unicorn/no-array-callback-reference": "off",
"@typescript-eslint/triple-slash-reference": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-call": "off"
}
}
}