-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.53 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
56
57
{
"name": "floci-console",
"version": "0.3.0",
"private": true,
"scripts": {
"predev": "bun run check:floci",
"dev": "next dev",
"prebuild": "bun run check:floci",
"build": "next build",
"prestart": "bun run check:floci",
"start": "next start",
"lint": "eslint",
"test": "bun test tests/unit",
"test:watch": "bun test tests/unit --watch",
"test:coverage": "bun test tests/unit --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"check:floci": "bun scripts/check-floci-version.ts"
},
"floci": {
"version": "^1.5"
},
"dependencies": {
"@aws-sdk/client-cloudwatch": "^3.1016.0",
"@aws-sdk/client-cloudwatch-logs": "^3.1016.0",
"@aws-sdk/client-cognito-identity-provider": "^3.1016.0",
"@aws-sdk/client-s3": "^3.1016.0",
"@aws-sdk/client-sqs": "^3.1016.0",
"lucide-react": "^1.6.0",
"next": "16.0.10",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@happy-dom/global-registrator": "^20.9.0",
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"aws-sdk-client-mock": "^4.1.0",
"eslint": "^9",
"eslint-config-next": "16.2.1",
"tailwindcss": "^4",
"typescript": "^5"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
]
}