-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.03 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
84
85
86
87
88
89
90
{
"name": "ee-react-template",
"private": true,
"version": "0.0.1",
"scripts": {
"start": "storybook dev -p 6006",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"lint": "npm run lint:scripts && npm run lint:styles",
"lint:scripts": "eslint . --ext .ts,.tsx && prettier . --check",
"lint:styles": "stylelint ./**/*.{css,scss}",
"format:scripts": "prettier . --write",
"format:styles": "stylelint ./**/*.{css,scss} --fix",
"format": "npm run format:scripts && npm run format:styles",
"prepare": "husky",
"uninstall-husky": "npm uninstall husky --no-save && git config --unset core.hooksPath && npx rimraf .husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/eslint-parser": "^7.29.7",
"@babel/preset-react": "^7.29.7",
"@babel/preset-typescript": "^7.29.7",
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^9.39.5",
"@storybook/addon-a11y": "^10.5.0",
"@storybook/addon-docs": "^10.5.0",
"@storybook/addon-links": "^10.5.0",
"@storybook/addon-themes": "^10.5.0",
"@storybook/react": "^10.5.0",
"@storybook/react-vite": "^10.5.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/geojson": "^7946.0.16",
"@types/jsdom": "^28.0.3",
"@types/leaflet": "^1.9.21",
"@types/node": "^26.1.1",
"@types/proj4": "^2.19.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/sinon": "^22.0.0",
"@types/supercluster": "^7.1.3",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"@vitejs/plugin-react-swc": "^4.3.1",
"@vitest/coverage-v8": "^4.1.10",
"copyfiles": "^2.4.1",
"eslint": "^9.39.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-storybook": "10.5.0",
"globals": "^17.7.0",
"happy-dom": "^20.10.6",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"postcss": "^8.5.26",
"postcss-scss": "^4.0.9",
"prettier": "^3.9.5",
"rimraf": "^6.1.3",
"sinon": "^22.0.0",
"storybook": "^10.5.0",
"stylelint": "^17.14.0",
"stylelint-config-recommended": "^18.0.0",
"stylelint-config-sass-guidelines": "^13.0.0",
"stylelint-order": "^8.1.1",
"stylelint-prettier": "^5.0.3",
"ts-node": "^10.9.2",
"typescript": "6.0.3",
"vite": "^8.1.4",
"vite-plugin-svgr": "^5.2.0",
"vitest": "^4.1.10"
},
"dependencies": {
"@amsterdam/design-system-assets": "^2.5.0",
"@amsterdam/design-system-css": "^4.3.0",
"@amsterdam/design-system-react": "^4.3.0",
"@amsterdam/design-system-react-icons": "^2.2.0",
"@amsterdam/design-system-tokens": "^4.2.0",
"geojson": "^0.5.0",
"leaflet": "^1.9.4",
"proj4": "^2.20.9",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-leaflet": "^5.0.0",
"supercluster": "^8.0.1"
}
}