-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 911 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
{
"name": "aws-connect-sso-web-app",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.18.2"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"test:e2e": "cypress open --e2e --browser=chrome",
"test:e2e:headless": "cypress run --e2e --browser=chrome"
},
"dependencies": {
"jsonwebtoken": "9.0.2",
"next": "14.2.20",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/jsonwebtoken": "9.0.3",
"@types/node": "20.8.6",
"@types/react": "18.2.28",
"@types/react-dom": "18.2.13",
"cypress": "13.3.1",
"eslint": "8.51.0",
"eslint-config-next": "13.5.4",
"prettier": "3.0.3",
"typescript": "5.2.2"
}
}