-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"generate": "next build && next export",
"type-check": "tsc",
"lint": "eslint --fix ."
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"next": "latest",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.0",
"@types/node": "^12.12.21",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.0.0",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"postcss-preset-env": "^7.4.3",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.24",
"typescript": "^4.3"
}
}