-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.46 KB
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
{
"name": "nextjs-with-typescript",
"version": "4.0.0",
"private": true,
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.0",
"@emotion/styled": "latest",
"@mui/icons-material": "latest",
"@mui/lab": "latest",
"@mui/material": "latest",
"@mui/material-nextjs": "^5.15.11",
"@mui/styles": "latest",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.11",
"clsx": "latest",
"framer-motion": "latest",
"next": "^14.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-parallax-tilt": "latest",
"react-tsparticles": "^1.38.0",
"stylis": "^4.1.3",
"stylis-plugin-rtl": "^2.1.1",
"zod": "^3.23.8",
"zustand": "^4.3.2"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "next lint && npx prettier --write ./src/**"
},
"devDependencies": {
"@next/eslint-plugin-next": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/stylis": "^4.0.2",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-config-google": "latest",
"eslint-config-next": "^13.4.3",
"eslint-config-prettier": "latest",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "latest",
"eslint-plugin-react": "latest",
"prettier": "latest",
"typescript": "latest"
}
}