-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
{
"name": "my-to-do",
"version": "1.0.0-beta.3",
"description": "Clone coding: Microsoft To Do",
"private": true,
"scripts": {
"dev": "next dev -p 5000",
"build": "next build",
"start": "next start -p 5000",
"lint": "next lint"
},
"repository": "https://github.com/ony3000/my-to-do.git",
"author": "Hyeonjong <nianelo4@gmail.com>",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.2",
"@next/font": "13.1.1",
"@reduxjs/toolkit": "^1.5.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"autoprefixer": "^10.4.13",
"classnames": "^2.2.6",
"date-fns": "^2.29.3",
"dayjs": "^1.10.4",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "13.1.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.32.1",
"lodash.merge": "^4.6.2",
"next": "13.1.1",
"postcss": "^8.4.20",
"react": "18.2.0",
"react-datepicker": "^4.8.0",
"react-dom": "18.2.0",
"react-redux": "^8.0.5",
"redux": "^4.0.5",
"sass": "^1.32.6",
"tailwindcss": "^3.2.4",
"tiny-invariant": "^1.2.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/lodash.merge": "^4.6.2",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-datepicker": "^4.8.0",
"@types/react-dom": "18.0.10",
"@types/tailwindcss": "^2.0.2",
"@types/uuid": "^8.3.2",
"eslint": "8.31.0",
"prettier": "2.8.3",
"prettier-plugin-tailwindcss": "0.2.1",
"typescript": "4.9.4"
}
}