-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
94 lines (94 loc) · 2.28 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write --ignore-unknown ."
},
"dependencies": {
"@headlessui/react": "^1.7.4",
"@heroicons/react": "^2.0.13",
"@tailwindcss/forms": "^0.5.7",
"cloudinary": "^1.32.0",
"eslint-config-next": "^13.0.1",
"framer-motion": "^7.6.4",
"imagemin": "^8.0.1",
"imagemin-jpegtran": "^7.0.0",
"next": "latest",
"next-cloudinary": "^5.20.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hooks-global-state": "^2.0.0",
"react-hot-toast": "^2.4.1",
"react-swipeable": "^7.0.0",
"react-use-keypress": "^1.3.1"
},
"devDependencies": {
"@types/node": "18.11.9",
"@types/react": "18.2.8",
"autoprefixer": "^10.4.13",
"eslint": "^8.41.0",
"eslint-config-next": "13.4.3",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-tailwindcss": "^3.12.0",
"postcss": "^8.4.23",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwindcss": "^3.2.1",
"typescript": "4.8.4"
},
"eslintConfig": {
"root": true,
"extends": [
"next/core-web-vitals",
"prettier"
],
"plugins": [
"react"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"settings": {
"react": {
"pragma": "React",
"version": "detect"
}
},
"globals": {
"__DEV__": false,
"jasmine": false,
"beforeAll": false,
"afterAll": false,
"beforeEach": false,
"afterEach": false,
"test": false,
"expect": false,
"describe": false,
"jest": false,
"it": false
},
"rules": {
"comma-dangle": 0,
"multiline-ternary": 0,
"no-undef": 0,
"no-unused-vars": 0,
"no-use-before-define": 0,
"no-global-assign": 0,
"quotes": 0,
"react/no-unescaped-entities": 0,
"react/prop-types": 0,
"space-before-function-paren": 0,
"react/react-in-jsx-scope": "off"
}
}
}