-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.53 KB
/
package.json
File metadata and controls
49 lines (49 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
{
"name": "finance_accumulator_web",
"version": "1.0.9",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"docker-build-staging": "docker compose -f docker/staging/docker-compose.yml build",
"azure-push-staging": "docker push codespice.azurecr.io/${npm_package_name}-staging:${npm_package_version}",
"docker-start-staging": "docker compose -f docker/staging/docker-compose.yml up -d",
"docker-stop-staging": "docker compose -f docker/staging/docker-compose.yml down",
"playwright-test": "npx playwright test",
"playwright-test-ui": "npx playwright test --ui",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:e2e:open": "cypress open",
"test:e2e:run": "cypress run"
},
"dependencies": {
"buffer": "^6.0.3",
"csv-writer": "^1.6.0",
"cypress-social-logins": "^1.14.2",
"next": "14.2.12",
"next-auth": "^4.24.7",
"react": "^18",
"react-dom": "^18",
"stripe": "^15.12.0"
},
"devDependencies": {
"@playwright/test": "^1.46.1",
"@testing-library/cypress": "^10.0.2",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"cypress": "^13.13.2",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}