-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 916 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"e2e": "start-server-and-test dev http://localhost:3000 \"cypress open --e2e\"",
"e2e:headless": "start-server-and-test dev http://localhost:3000 \"cypress run --e2e\"",
"component": "cypress open --component",
"component:headless": "cypress run --component"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.19",
"@mui/material": "^5.14.20",
"moment": "^2.29.4",
"next": "^14.0.1",
"octokit": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"swr": "^2.2.4"
},
"devDependencies": {
"@types/node": "18.0.6",
"@types/react": "18.2.8",
"@types/react-dom": "18.0.6",
"cypress": "12.3.0",
"start-server-and-test": "1.15.2",
"typescript": "4.7.4"
}
}