-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.74 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
{
"name": "go-todo-frontend",
"version": "0.1.0",
"private": true,
"engines": {
"npm": "please-use-yarn",
"yarn": ">=1.22.17"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix"
},
"dependencies": {
"@headlessui/react": "^1.5.0",
"@mdi/js": "^6.5.95",
"@reduxjs/toolkit": "^1.8.0",
"@smitpatelx/string-utils": "^1.0.1",
"axios": "^0.26.1",
"classnames": "^2.3.1",
"crypto-js": "^4.1.1",
"formik": "^2.2.9",
"framer-motion": "^6.2.8",
"immer": "^9.0.12",
"next": "12.1.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-lottie": "^1.2.3",
"react-query": "^3.34.16",
"react-redux": "^7.2.6",
"sass": "^1.49.9",
"yup": "^0.32.11"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.0",
"@tailwindcss/forms": "^0.5.0",
"@types/crypto-js": "^4.1.1",
"@types/node": "17.0.21",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"@types/react-lottie": "^1.2.6",
"@types/react-redux": "^7.1.24",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"autoprefixer": "^10.4.2",
"babel-eslint": "^10.1.0",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.1",
"eslint-config-next": "12.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react-hooks": "^4.3.0",
"postcss": "^8.4.7",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.23",
"typescript": "4.6.2"
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
]
}