-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"xo": "xo",
"xo:fix": "xo --fix"
},
"dependencies": {
"@reduxjs/toolkit": "^1.6.2",
"@types/lodash.filter": "^4.6.6",
"@types/lodash.pick": "^4.4.6",
"@types/react": "^17.0.27",
"classnames": "^2.2.6",
"html-react-parser": "^1.4.0",
"lodash.filter": "^4.6.0",
"lodash.pick": "^4.4.0",
"next": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-lineto": "^3.2.1",
"react-redux": "^7.2.5",
"react-text-assembler": "1.0.6",
"typescript": "^4.4.3"
},
"devDependencies": {
"autoprefixer": "^10.2.6",
"eslint-config-xo-react": "^0.25.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"postcss": "^8.3.5",
"prettier": "2.4.1",
"tailwindcss": "^2.2.4",
"xo": "^0.45.0"
},
"xo": {
"extends": "xo-react",
"prettier": true,
"rules": {
"react/function-component-definition": "off",
"react/react-in-jsx-scope": "off",
"node/prefer-global/process": "off",
"unicorn/filename-case": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"react/no-array-index-key": "warn",
"@typescript-eslint/no-implicit-any-catch": "warn",
"prefer-promise-reject-errors": "warn",
"prefer-regex-literals": "warn"
},
"ignore": [
"postcss.config.js",
"tailwind.config.js",
"next-env.d.ts",
"next.config.mjs"
]
}
}