-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.65 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
78
79
80
81
82
83
{
"name": "digital-planning-register",
"version": "0.1.0",
"private": true,
"license": "GPL-3.0-only",
"scripts": {
"dev": "next dev",
"build": "next build",
"build-unsafe": "next build --no-lint",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"test:unit": "jest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:watch": "jest --watch",
"prepare": "node .husky/install.mjs",
"build-start": "npm run build && npm run start",
"pa11y-wait-on-start": "wait-on http://localhost:3000 && npm run pa11y",
"run-pa11y": "npm run build && npm run start & npm run pa11y-wait-on-start",
"pa11y": "pa11y-ci --config .pa11yci",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "chromatic --exit-zero-on-changes",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@axe-core/playwright": "^4.10.1",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/state": "^6.5.2",
"@faker-js/faker": "^8.4.1",
"@next/third-parties": "^14.2.28",
"@opensystemslab/map": "^0.8.3",
"@types/geojson": "^7946.0.16",
"codemirror": "^6.0.2",
"dayjs": "^1.11.13",
"digital-planning-data-schemas": "file:digital-planning-data-schemas-0.7.5.tgz",
"govuk-frontend": "^5.10.1",
"next": "14.2.28",
"react": "^18",
"react-dom": "^18",
"server-only": "^0.0.1",
"sharp": "^0.34.1",
"wkt": "^0.1.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
"@playwright/test": "^1.51.1",
"@storybook/addon-a11y": "^8.6.12",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/addon-interactions": "^8.6.12",
"@storybook/addon-links": "^8.6.12",
"@storybook/blocks": "^8.6.12",
"@storybook/nextjs": "^8.6.12",
"@storybook/react": "^8.6.12",
"@storybook/test": "^8.6.12",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"babel-jest": "^29.7.0",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.28",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-storybook": "^0.12.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"pa11y": "^8.0.0",
"pa11y-ci": "^3.1.0",
"prettier": "^3.5.3",
"sass": "^1.86.3",
"storybook": "^8.6.12",
"typescript": "^5",
"wait-on": "^7.2.0"
}
}