-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.05 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
{
"name": "finance-app",
"version": "1.1.0",
"description": "Application for Finance Platform",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"pretty": "prettier --write \"src/**/*.js\"",
"android:start": "npx cap open android",
"android:copy": "ionic capacitor copy android",
"android:initial": "npx cap add android"
},
"hooks": {
"pre-commit": "pretty-quick --staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrowe009/FinanceApp.git"
},
"author": "Steven Rowe",
"license": "ISC",
"bugs": {
"url": "https://github.com/mrowe009/FinanceApp/issues"
},
"homepage": ".",
"dependencies": {
"@apollo/client": "^3.4.12",
"@capacitor/android": "^3.2.3",
"@capacitor/app": "^1.0.3",
"@capacitor/core": "^3.2.3",
"@capacitor/haptics": "^1.0.3",
"@capacitor/keyboard": "^1.0.3",
"@capacitor/local-notifications": "^1.0.6",
"@capacitor/splash-screen": "^1.1.2",
"@capacitor/status-bar": "^1.0.3",
"@capacitor/storage": "^1.2.0",
"@hookform/resolvers": "^2.8.1",
"@ionic/react": "5.8.0",
"@ionic/react-router": "5.8.0",
"clsx": "^1.1.1",
"dayjs": "^1.10.7",
"graphql": "^15.5.3",
"graphql-tag": "^2.12.5",
"lodash": "^4.17.21",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-animate-height": "^2.0.23",
"react-animated-number": "^0.4.4",
"react-dom": "^17.0.2",
"react-hook-form": "^7.15.3",
"react-jss": "^10.8.0",
"react-minimal-pie-chart": "^8.2.0",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"react-use": "^17.3.1",
"rxjs": "^7.3.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@capacitor/cli": "^3.2.3",
"husky": "^7.0.2",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}