-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpackage.json
68 lines (68 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "FrontendPro",
"version": "0.1.0",
"private": true,
"dependencies": {
"@codesandbox/sandpack-react": "^1.20.4",
"@monaco-editor/react": "^4.4.6",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@typeform/embed-react": "^1.1.1",
"cloudinary-react": "^1.6.7",
"emmet-monaco-es": "^5.1.2",
"firebase": "^9.6.10",
"lottie-react": "^2.3.1",
"moment": "^2.29.1",
"next": "^13.2.3",
"next-sitemap": "^4.0.5",
"react": "^18.2.0",
"react-canvas-confetti": "^1.3.0",
"react-dom": "^18.2.0",
"react-resizable-panels": "^0.0.35",
"sharp": "^0.31.3",
"tailwind-merge": "^1.8.1",
"uuid": "^8.3.2"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"postbuild": "next-sitemap",
"lint": "next lint",
"format": "prettier --write .",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^10.4.7",
"eslint": "^8.35.0",
"eslint-config-next": "13.2.3",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"postcss": "^8.4.14",
"prettier": "^2.8.4",
"tailwindcss": "^3.3.0"
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{js, css, md}": [
"prettier --write"
]
}
}