-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
47 lines (47 loc) · 991 Bytes
/
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
{
"name": "frontend-challenge",
"version": "0.2.0",
"private": true,
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.4",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.5",
"@mui/material": "^5.8.4",
"next": "^14.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.77.5"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"prettier": "^3.3.2",
"typescript": "^5.4.5"
}
}