-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 2.83 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
95
{
"name": "tasksheet-app",
"version": "0.1.0",
"description": "An open-source project management tool built with software developers in mind.",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/gyenabubakar/tasksheet-app.git"
},
"keywords": [
"project management",
"saas",
"to-do app"
],
"author": "Gyen Abubakar <gyenabubakar@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/gyenabubakar/tasksheet-app/issues"
},
"homepage": "https://github.com/gyenabubakar/tasksheet-app#readme",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"netlify": "netlify"
},
"dependencies": {
"@editorjs/checklist": "^1.3.0",
"@editorjs/code": "^2.7.0",
"@editorjs/delimiter": "^1.2.0",
"@editorjs/editorjs": "^2.23.2",
"@editorjs/embed": "^2.5.0",
"@editorjs/header": "^2.6.2",
"@editorjs/image": "^2.6.2",
"@editorjs/inline-code": "^1.3.1",
"@editorjs/link": "^2.4.0",
"@editorjs/list": "^1.6.2",
"@editorjs/marker": "^1.2.2",
"@editorjs/paragraph": "^2.8.0",
"@editorjs/quote": "^2.4.0",
"@editorjs/raw": "^2.3.0",
"@editorjs/simple-image": "^1.4.1",
"@editorjs/table": "^2.0.1",
"@editorjs/warning": "^1.2.0",
"cookie-universal": "^2.1.5",
"editorjs-undo": "^2.0.0-rc.0",
"firebase": "^9.6.7",
"http-method-enum": "^1.0.0",
"http-status-codes": "^2.2.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"next": "12.0.10",
"next-transpile-modules": "^9.0.0",
"nextjs-progressbar": "^0.0.13",
"react": "17.0.2",
"react-datepicker": "^4.6.0",
"react-dom": "17.0.2",
"react-toastify": "^8.1.1",
"react-tooltip": "^4.2.21",
"sweetalert2": "^11.4.0",
"sweetalert2-react-content": "^4.2.0",
"swr": "^1.2.2",
"uuid": "^8.3.2",
"validator": "^13.7.0"
},
"devDependencies": {
"@babel/preset-react": "^7.16.7",
"@tailwindcss/typography": "^0.5.2",
"@types/js-cookie": "^3.0.1",
"@types/lodash": "^4.14.179",
"@types/node": "^14.18.10",
"@types/react": "17.0.39",
"@types/react-datepicker": "^4.3.4",
"@types/react-dom": "^17.0.11",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"autoprefixer": "^10.4.2",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"netlify-cli": "^8.16.1",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.18",
"typescript": "^4.5.5"
}
}