-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 896 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 896 Bytes
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
{
"name": "shmurdle",
"private": true,
"workspaces": [
"api",
"client",
"shared"
],
"type": "module",
"scripts": {
"test:db-up": "docker compose -f docker-compose.test.yml up -d && npm run db:migrate:deploy --workspace=shared",
"test:db-down": "docker compose -f docker-compose.test.yml down",
"test": "dotenv -e .env.test -e .env -- sh -c 'npm run test:db-up && vitest run'",
"api:dev": "dotenv -e .env.development -e .env -- npm run dev --workspace api",
"client:dev": "dotenv -e .env.development -e .env -- npm run dev --workspace client"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"dotenv-cli": "^11.0.0",
"jsdom": "^29.0.2",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.1038.0",
"react-icons": "^5.6.0"
}
}