-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "nextjs-with-typescript",
"version": "5.0.0",
"private": true,
"dependencies": {
"@emotion/cache": "11.9.3",
"@emotion/react": "11.9.3",
"@emotion/server": "latest",
"@emotion/styled": "11.9.3",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@mui/icons-material": "^5.8.4",
"@mui/material": "5.8.6",
"clsx": "latest",
"next": "12.2.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"post-update": "echo \"codesandbox preview only, need an update\" && yarn upgrade --latest"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.3",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/webpack": "^5.28.0",
"babel-jest": "^28.1.1",
"eslint": "8.18.0",
"eslint-config-next": "12.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.1",
"jest-watch-typeahead": "^1.1.0",
"next-router-mock": "^0.7.4",
"react-test-renderer": "^18.2.0",
"start-server-and-test": "^1.14.0",
"ts-node": "^10.8.1",
"typescript": "4.7.4"
}
}