-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.48 KB
/
package.json
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": "social-bristol",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && prettier --check '**/?(.)*.{md,css,scss,js,ts,tsx,json,yaml,yml}' && stylelint '**/*.scss'",
"format": "prettier --write '**/?(.)*.{md,css,scss,js,ts,tsx,json,yaml,yml}'",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook",
"docker-playwright": "docker run --rm -p 9323:9323 -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.46.0-jammy /bin/bash -c 'npm i; /bin/bash'",
"playwright": "npx playwright test",
"new-group": "tsx scripts/new-group.ts",
"new-component": "tsx scripts/new-component.ts",
"react-to-storybook": "tsx scripts/react-to-storybook.ts",
"generate-visual-tests": "tsx scripts/generate-visual-tests.ts",
"make-migration": "tsx scripts/make-migration.ts",
"apply-migration": "tsx scripts/apply-migration.ts",
"prepare": "husky",
"admin": "tsx scripts/admin-server.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "0.30.1",
"@types/node": "20.5.6",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"dotenv": "16.4.5",
"eslint": "8.56.0",
"eslint-config-next": "14.2.3",
"fuse.js": "7.0.0",
"leaflet": "1.9.4",
"next": "14.2.22",
"prettier": "3.2.4",
"prettier-eslint": "16.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-leaflet": "4.2.1",
"sass": "1.70.0",
"tsx": "4.19.1",
"typescript": "5.3.3",
"yargs": "17.7.2",
"express": "4.21.2",
"ejs": "3.1.10"
},
"devDependencies": {
"@playwright/test": "1.46.0",
"@storybook/addon-a11y": "8.2.7",
"@storybook/addon-essentials": "8.2.7",
"@storybook/addon-interactions": "8.2.7",
"@storybook/addon-links": "8.2.7",
"@storybook/addon-onboarding": "8.2.7",
"@storybook/addon-styling-webpack": "1.0.0",
"@storybook/blocks": "8.2.7",
"@storybook/nextjs": "8.2.7",
"@storybook/react": "8.2.7",
"@storybook/test": "8.2.7",
"@storybook/test-runner": "0.19.1",
"@types/leaflet": "1.9.8",
"axe-playwright": "2.0.3",
"eslint-config-torchbox": "1.1.0",
"eslint-plugin-storybook": "0.8.0",
"husky": "9.1.7",
"storybook": "8.2.7",
"stylelint": "16.8.1",
"stylelint-config-css-modules": "4.4.0",
"stylelint-config-standard": "36.0.1",
"stylelint-config-standard-scss": "13.1.0"
}
}