-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
124 lines (124 loc) · 3.69 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "ministry-mapper",
"version": "1.32.2",
"private": true,
"type": "module",
"dependencies": {
"@ebay/nice-modal-react": "^1.2.13",
"@rollbar/react": "^0.11.2",
"@vis.gl/react-google-maps": "^1.1.0",
"bootstrap": "^5.3.3",
"firebase": "^10.13.2",
"nanoid": "^5.0.7",
"posthog-js": "^1.155.4",
"react": "^18.3.1",
"react-bootstrap": "^2.10.4",
"react-bootstrap-range-slider": "^3.0.8",
"react-calendar": "^5.0.0",
"react-confirm-alert": "^3.0.6",
"react-countdown": "^2.3.6",
"react-dom": "^18.3.1",
"react-password-checklist": "^1.8.0",
"react-router-dom": "^6.26.1",
"react-select": "^5.8.0",
"rollbar": "^2.26.4"
},
"scripts": {
"start": "vite",
"build": "VITE_VERSION=$npm_package_version vite build",
"test": "vitest run",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"prettier": "npx prettier --check src",
"prettier:fix": "npx prettier --write src",
"prepare": "husky install",
"serve": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.9.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^8.1.2",
"@storybook/jest": "^0.2.3",
"@storybook/manager-api": "^8.2.9",
"@storybook/react": "^8.1.2",
"@storybook/react-vite": "^8.2.9",
"@storybook/test-runner": "^0.18.2",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^8.2.9",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.16.1",
"@types/react": "^18.3.3",
"@types/react-calendar": "^3.9.0",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"@vitejs/plugin-react": "^4.3.1",
"chromatic": "^11.7.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.1.4",
"jest-worker": "^29.7.0",
"jsdom": "^24.1.1",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "1.77.6",
"semantic-release": "^23.1.1",
"sharp": "^0.33.5",
"storybook": "^8.2.9",
"storybook-mock-date-decorator": "^1.0.2",
"svgo": "^3.3.2",
"typescript": "^5.5.4",
"typescript-eslint": "^7.18.0",
"unplugin-turbo-console": "^1.10.1",
"vite": "^5.4.1",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-image-optimizer": "^1.1.8",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^1.6.0"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}