-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.68 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
{
"name": "bareapp",
"version": "0.0.0",
"description": "A cross-platform example app with ionic",
"keywords": [
"app",
"ionic"
],
"bugs": {
"url": "https://github.com/alvis/bareapp/issues"
},
"license": "MIT",
"author": {
"name": "Alvis HT Tang",
"email": "alvis@hilbert.space"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvis/bareapp.git"
},
"scripts": {
"android": "run-s build:web start:android",
"build:web": "run-s ionic:build",
"coverage": "run coverage",
"ionic:build": "cross-env SKIP_PREFLIGHT_CHECK=true TS_NODE_PROJECT=tsconfig.build.json craco build",
"ionic:serve": "cross-env HOST=0.0.0.0 PORT=8100 SKIP_PREFLIGHT_CHECK=true TS_NODE_PROJECT=tsconfig.build.json craco start",
"ios": "run-s build:web start:ios",
"open:android": "cap open android",
"open:ios": "cap open ios",
"prepare": "presetter bootstrap",
"lint": "run lint",
"start:android": "ionic cap run android --livereload --external",
"start:ios": "ionic cap run ios --livereload --external",
"start:web": "ionic serve --no-open",
"sync": "cap sync",
"test": "run test"
},
"devDependencies": {
"@capacitor/cli": "^3.0.0",
"@craco/craco": "^6.0.0",
"@ionic/cli": "^6.0.0",
"@types/auth0-js": "^9.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.0.0",
"autoprefixer": "^9.0.0",
"daisyui": "^1.0.0",
"postcss": "^7.0.0",
"presetter": "^3.0.0",
"presetter-preset-essentials": "^3.0.0",
"presetter-preset-react": "^3.0.0",
"react-scripts": "^4.0.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.0"
},
"dependencies": {
"@capacitor/android": "^3.0.0",
"@capacitor/app": "^1.0.0",
"@capacitor/browser": "^1.0.0",
"@capacitor/device": "^1.0.0",
"@capacitor/dialog": "^1.0.0",
"@capacitor/ios": "^3.0.0",
"@capacitor/splash-screen": "^1.0.0",
"@capacitor/storage": "^1.0.0",
"@ionic-native/core": "^5.0.0",
"@ionic-native/ios-aswebauthenticationsession-api": "^5.0.0",
"@ionic-native/secure-storage": "^5.0.0",
"@ionic/react": "^5.0.0",
"@ionic/react-router": "^5.0.0",
"auth0-js": "^9.0.0",
"cordova-plugin-ios-aswebauthenticationsession-api": "^1.0.0",
"cordova-plugin-secure-storage-echo": "^5.0.0",
"framer-motion": "^4.0.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-router-dom": "^5.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}