-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "devtter",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@chakra-ui/react": "1.8.7",
"@emotion/react": "11.8.2",
"@emotion/styled": "11.8.1",
"cloudinary": "1.29.0",
"firebase": "9.6.10",
"framer-motion": "6.2.8",
"just-debounce-it": "3.0.1",
"next": "12.1.4",
"next-auth": "4.3.1",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-icons": "4.3.1",
"react-textarea-autosize": "8.3.3",
"swr": "1.2.2",
"wouter": "2.8.0-alpha.2",
"zustand": "3.7.1"
},
"devDependencies": {
"@giphy/js-types": "4.1.0",
"eslint": "8.12.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.29.4"
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"plugin:react/recommended",
"standard"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"react/react-in-jsx-scope": "off",
"react/prop-types": "off",
"indent": "off",
"space-before-function-paren": "off",
"no-unused-vars": "warn",
"multiline-ternary": "off"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 3,
"arrowParens": "avoid"
}
}