-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.46 KB
/
package.json
File metadata and controls
55 lines (55 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
53
54
55
{
"name": "amplify-cdk-app",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint -c ../../../eslint.config.ts",
"lint-fix": "eslint -c ../../../eslint.config.ts --fix",
"clean": "rimraf build",
"analyze": "ANALYZE=true next build",
"all": "pnpm install && yarn lint && yarn build"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.9",
"@mui/material": "^7.3.9",
"autoprefixer": "^10.4.27",
"next": "^16.2.3",
"postcss": "^8.5.8",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.2",
"web-vitals": "^4.2.4"
},
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/core": "^0.16.0",
"@eslint/js": "^9.39.4",
"@next/bundle-analyzer": "^16.2.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"eslint": "^9.39.4",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-promise": "^7.2.1",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"styled-jsx": "^5.1.7",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": [
"@swc/jest"
]
}
}
}