-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "toothfairy-admin",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"eslint:fix": "eslint --cache --fix"
},
"dependencies": {
"@iconify/react": "^4.1.1",
"@upstash/redis": "^1.28.3",
"aws-sdk": "^2.1434.0",
"axios": "^1.4.0",
"baseui": "^13.0.0",
"classnames": "^2.3.2",
"formik": "^2.4.5",
"lodash": "^4.17.21",
"next": "13.4.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"react-map-interaction": "^2.1.0",
"react-quill": "^2.0.0",
"styled-components": "^5.3.11",
"styletron-engine-monolithic": "^1.0.0",
"styletron-react": "^6.1.0",
"yup": "^1.3.2"
},
"devDependencies": {
"@types/lodash": "^4.14.201",
"@types/node": "20.3.2",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"autoprefixer": "^10.4.14",
"eslint": "8.43.0",
"eslint-config-next": "13.4.7",
"husky": "^8.0.3",
"postcss": "^8.4.24",
"tailwind-styled-components": "^2.2.0",
"tailwindcss": "^3.3.2",
"typescript": "5.1.3"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"npm run eslint:fix",
"npm run format"
]
}
}