-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.87 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.87 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"$schema": "https://json.schemastore.org/package.json",
"name": "dynamo-booklib",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome lint .",
"lint:write": "biome lint --write .",
"format": "biome format .",
"format:write": "biome format --write .",
"check": "biome check .",
"check:write": "biome check --write .",
"validate": "pnpm check && pnpm typecheck",
"full:write": "biome lint --write . && biome format --write . && biome check --write .",
"prepare": "husky",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --watchAll=false",
"test:coverage:ci": "jest --coverage --watchAll=false --passWithNoTests --silent",
"test:coverage:sonar": "bash ./scripts/coverage.sh",
"test:local": "NODE_ENV=test jest --setupFilesAfterEnv=<rootDir>/jest.setup.js",
"typecheck": "tsc --noEmit",
"db:setup": "bash ./setup-local-db.sh",
"db:start": "docker-compose up -d",
"db:stop": "docker-compose down",
"db:test": "node local-lambda.js",
"api:start": "node server.js",
"dev:full": "npm run db:start && concurrently \"npm run api:start\" \"npm run dev\"",
"smoke": "npx playwright test playwright_test/darkmode.spec.ts playwright_test/smoke.spec.ts playwright_test/search.spec.ts playwright_test/visibility.spec.ts --timeout=15000 --workers=4",
"build:lambda": "mkdir -p terraform/dist && esbuild terraform/lambda.js --bundle --platform=node --target=node18 --outfile=terraform/dist/lambda.js --external:@aws-sdk/* --minify --packages=bundle"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.0.0",
"@aws-sdk/lib-dynamodb": "^3.0.0",
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"next": "^14.2.29",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.5.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@playwright/test": "^1.52.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/node": "22.15.29",
"@types/react": "18.3.23",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"concurrently": "^9.1.2",
"esbuild": "^0.25.5",
"eslint": "^8.57.0",
"eslint-config-next": "15.3.3",
"eslint-plugin-next": "^0.0.0",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.0-beta.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.3.4",
"typescript": "5.8.3"
}
}