-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.test.json
More file actions
72 lines (72 loc) · 2.42 KB
/
Copy pathpackage.test.json
File metadata and controls
72 lines (72 loc) · 2.42 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
{
"name": "formaos",
"version": "1.0.0",
"description": "Enterprise compliance management platform",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"stylelint": "stylelint \"**/*.css\" \"**/*.scss\" --fix",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage --watchAll=false",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:visual": "backstop test",
"test:visual:approve": "backstop approve",
"test:visual:reference": "backstop reference",
"test:lighthouse": "lhci autorun",
"test:a11y": "pa11y-ci --sitemap http://localhost:3000/sitemap.xml",
"test:security": "snyk test",
"qa:full": "npm run lint && npm run type-check && npm run test:ci && npm run test:e2e && npm run test:lighthouse && npm run test:a11y",
"qa:quick": "npm run lint && npm run type-check && npm run test",
"qa:visual": "npm run test:visual",
"supabase:logs": "node scripts/supabase-logs.js",
"monitoring:check": "node scripts/monitoring-check.js"
},
"dependencies": {
"@next/bundle-analyzer": "^15.1.0",
"@supabase/supabase-js": "^2.39.0",
"next": "^16.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.8.5",
"@lhci/cli": "^0.13.0",
"@playwright/test": "^1.40.0",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"backstopjs": "^6.2.2",
"eslint": "^8.54.0",
"eslint-config-next": "^16.1.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-testing-library": "^6.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"pa11y-ci": "^3.0.1",
"playwright": "^1.40.0",
"prettier": "^3.1.0",
"snyk": "^1.1260.0",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}