-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
120 lines (120 loc) · 4.32 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
{
"name": "goat-health",
"version": "1.0.0-beta.3",
"private": true,
"description": "Making More Health - Goat Health",
"author": "Making More Health | Simon Golms",
"homepage": "https://www.makingmorehealth.org/",
"license": "GPL-3.0-or-later",
"scripts": {
"build": "vite build",
"build:ionic:browser": "ionic build --prod --engine=browser",
"build:ionic:ios": "ionic capacitor sync ios --prod",
"eject": "react-scripts eject",
"generate:images": "node scripts/images/sharp.js",
"generate:resources": "node scripts/resources.js",
"generate:resources:assets": "npm run generate:resources:assets:android && npm run generate:resources:assets:ios && npm run generate:resources:assets:pwa",
"generate:resources:assets:android": "node scripts/resources/assets-android.js",
"generate:resources:assets:ios": "node scripts/resources/assets-ios.js",
"generate:resources:assets:pwa": "node scripts/resources/assets-pwa.js",
"generate:screenshots": "npx --no-install jest --config scripts/screenshots/jest.config.js",
"release:github": "semantic-release --extends './scripts/release/releaserc.github.js'",
"release:information": "semantic-release --dry-run --extends './scripts/release/releaserc.information.js' --no-ci",
"repair": "npx rimraf build node_modules .git/hooks package-lock.json && npm install && npx husky install",
"start": "vite",
"start:prod": "npx http-server ./build --proxy http://localhost:8080? --silent",
"stylelint-check": "stylelint-config-prettier-check",
"test": "react-scripts test --transformIgnorePatterns 'node_modules/(?!(@ionic/react|@ionic/react-router|@ionic/core|@stencil/core|ionicons)/)'",
"serve": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"@capacitor/android": "5.0.0",
"@capacitor/core": "^5.0.0",
"@capacitor/filesystem": "^5.0.0",
"@capacitor/ios": "5.2.3",
"@capacitor/preferences": "^5.0.0",
"@capacitor/splash-screen": "^5.0.0",
"@capacitor/status-bar": "^5.0.0",
"@ionic/react": "^7.2.1",
"@ionic/react-router": "^7.2.1",
"@ionic/storage": "4.0.0",
"@reduxjs/toolkit": "1.9.5",
"app-provider": "^1.1.2",
"fuse.js": "6.6.2",
"i18next": "23.4.4",
"i18next-browser-languagedetector": "7.1.0",
"ionicons": "7.1.2",
"md5": "^2.3.0",
"microsoft-cognitiveservices-speech-sdk": "^1.16.0",
"query-string": "8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "13.1.2",
"react-redux": "8.1.2",
"react-router": "5.3.4",
"react-router-dom": "5.3.4",
"redux-persist": "6.0.0",
"sharp": "^0.32.4",
"swiper": "^10.1.0",
"typescript": "5.1.6",
"use-query-params": "2.2.1"
},
"devDependencies": {
"@boehringer-ingelheim/eslint-config": "1.1.4",
"@boehringer-ingelheim/prettier-config": "1.0.0",
"@capacitor/cli": "^5.0.0",
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"@ionic/cli": "7.1.1",
"@playwright/test": "^1.37.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "^26.0.24",
"@types/lunr": "^2.3.3",
"@types/node": "20.5.0",
"@types/react": "18.0.37",
"@types/react-dom": "18.0.11",
"@types/react-redux": "^7.1.16",
"@types/react-router": "5.1.20",
"@types/react-router-dom": "5.3.3",
"@vitejs/plugin-react": "4.0.3",
"chalk": "5.3.0",
"device-bars": "^1.1.2",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-jest-playwright": "0.9.0",
"eslint-plugin-prettier": "5.0.0",
"husky": "8.0.3",
"jest-playwright-preset": "3.0.1",
"lint-staged": "14.0.0",
"mobicon": "3.0.0",
"mobisplash": "0.2.2",
"prettier": "3.0.1",
"react-scripts": "5.0.1",
"semantic-release": "21.0.7",
"stylelint": "^15.10.2",
"stylelint-config-standard": "34.0.0",
"stylelint-order": "6.0.3",
"stylelint-prettier": "4.0.2",
"ts-jest": "^26.5.6",
"vite": "^4.4.9"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}