-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.72 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
{
"name": "nmdc-field-notes",
"private": true,
"version": "0.1.0",
"config": {
"buildNumber": 5
},
"type": "module",
"scripts": {
"dev": "ionic serve --host=127.0.0.1 --port=8100 --no-open",
"build": "tsc && vite build",
"build.native": "tsc && ionic capacitor sync",
"format": "prettier . --write",
"check.format": "prettier . --check",
"check.imports": "madge --circular src/main.tsx",
"sim.android": "npm run build && npx cap run android",
"sim.ios": "npm run build && npx cap run ios",
"preview": "vite preview",
"test.e2e": "cypress run",
"test.unit": "vitest",
"lint": "eslint src",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prerelease": "vitest run && npm run build.native",
"release": "./scripts/release.sh",
"rename.apk": "cp android/app/release/app-release.apk org.microbiomedata.fieldnotes-v$npm_package_version-build.$npm_package_config_buildNumber.apk"
},
"dependencies": {
"@capacitor/android": "^6.0.0",
"@capacitor/app": "^6.0.0",
"@capacitor/browser": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@capacitor/geolocation": "^6.0.0",
"@capacitor/haptics": "^6.0.0",
"@capacitor/ios": "^6.0.0",
"@capacitor/keyboard": "^6.0.0",
"@capacitor/network": "^6.0.1",
"@capacitor/splash-screen": "^6.0.0",
"@capacitor/status-bar": "^6.0.0",
"@ionic/react": "^8.0.1",
"@ionic/react-router": "^8.0.1",
"@ionic/storage": "^4.0.0",
"@reactour/tour": "^3.7.0",
"@tanstack/query-async-storage-persister": "^5.17.19",
"@tanstack/react-query": "^5.17.9",
"@tanstack/react-query-devtools": "^5.17.9",
"@tanstack/react-query-persist-client": "^5.17.19",
"date-fns": "^3.6.0",
"immer": "^10.0.3",
"ionicons": "^7.0.0",
"minisearch": "^6.3.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-hook-form": "^7.51.0",
"react-markdown": "^9.0.1",
"react-minisearch": "^6.3.0",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4"
},
"devDependencies": {
"@capacitor/assets": "^3.0.4",
"@capacitor/cli": "^6.0.0",
"@storybook/addon-essentials": "^7.6.8",
"@storybook/addon-interactions": "^7.6.8",
"@storybook/addon-links": "^7.6.8",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.8",
"@storybook/react": "^7.6.8",
"@storybook/react-vite": "^7.6.8",
"@storybook/test": "^7.6.8",
"@tanstack/eslint-plugin-query": "^5.17.7",
"@testing-library/dom": ">=7.21.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@trapezedev/configure": "^7.0.10",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitejs/plugin-legacy": "^5.0.0",
"@vitejs/plugin-react": "^4.0.1",
"cypress": "^13.5.0",
"eslint": "^8.35.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-testing-library": "^6.2.0",
"jsdom": "^22.1.0",
"madge": "^7.0.0",
"msw": "^2.1.5",
"postcss-nesting": "^12.1.5",
"prettier": "3.2.1",
"storybook": "^7.6.8",
"terser": "^5.4.0",
"typescript": "^5.1.6",
"vite": "^5.0.0",
"vitest": "^0.34.6"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
},
"description": "Mobile app for metadata collection on the go",
"madge": {
"tsConfig": "tsconfig.json",
"fileExtensions": [
"ts",
"tsx",
"js",
"jsx"
]
}
}