generated from jeremytenjo/starter-capacitorjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 4.96 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": "my-interval-timer",
"description": "Keep track of work and rest periods during workouts",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "node --experimental-json-modules --loader ts-node/esm ./scripts/dev/run.ts",
"dev:user-signedOut": "node --experimental-json-modules --loader ts-node/esm ./scripts/dev/run.ts --user signedOut",
"app:dev": "node --experimental-json-modules --loader ts-node/esm ./devtools/vite/scripts/startDevServer/run.ts",
"app:build": "node --experimental-json-modules --loader ts-node/esm ./devtools/vite/scripts/buildApp/run.ts",
"app:serve": "node --experimental-json-modules --loader ts-node/esm ./devtools/vite/scripts/runBuild/run.ts",
"dev:storybook": "start-storybook -c ./devtools/storybook -p 6007 -s ./public --quiet --ci",
"dev:prod": "node --loader ts-node/esm ./devtools/vite/scripts/runBuild.ts",
"emulators:start": "firebase emulators:start --only auth,firestore",
"emulators:firestore:export-data": "firebase emulators:export src/data/firestoreEmulatorData",
"android:run": "npm run android:sync && cap run android",
"android:open": "npm run android:sync && cap open android",
"android:sync": "npm run build && cap sync android",
"android:build-prod": "ENV=production npm run android:sync",
"ios:open": "npm run ios:sync && cap open ios",
"ios:sync": "npm run build && cap sync ios",
"capacitor:updateConfig": "npx cap copy",
"prettify": "node --loader ts-node/esm ./devtools/prettier/scripts/runPrettier/runPrettier.ts",
"lint": "eslint ./ --fix && tsc --noemit",
"tests:e2e:run:all": "node --experimental-json-modules --loader ts-node/esm ./devtools/testing/playwright/scripts/runPlayWright/run.ts",
"tests:run": "./devtools/scripts/tests/run",
"test:ts-types": "tsc --noemit",
"prepare": "husky install",
"helpers:capture-page-screenshots": "node --experimental-json-modules --loader ts-node/esm ./scripts/assets/capturePageScreenshots/run.ts",
"helpers:update-useweb-deps": "npm-check-updates -f /@useweb/*/ -u && npm i"
},
"dependencies": {
"@capacitor-community/keep-awake": "^2.1.0",
"@capacitor/app": "^1.0.6",
"@capacitor/storage": "^1.2.3",
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/lab": "^5.0.0-alpha.54",
"@mui/material": "^5.1.0",
"@useweb/array-db": "0.3.0",
"@useweb/capitalize": "0.1.0",
"@useweb/remove-last-character": "0.1.0",
"@useweb/start-firebase-emulator": "^1.2.0",
"@useweb/use-async": "^3.1.0",
"@useweb/use-data": "^8.0.2",
"@useweb/use-event-listener": "^0.2.0",
"@useweb/use-firebase": "^8.0.0",
"@useweb/use-firebase-auth": "^1.5.0",
"@useweb/use-install-prompt": "^1.2.1",
"@useweb/use-local-storage": "^1.2.1",
"@useweb/use-on-true": "0.1.0",
"clipboardy": "^3.0.0",
"command-line-args": "^5.2.1",
"firebase": "^9.4.1",
"format-duration": "^1.4.0",
"history": "^5.1.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"react": "^18.0.0-rc.2",
"react-countdown-circle-timer": "^2.5.4",
"react-dom": "^18.0.0-rc.2",
"react-hook-form": "^7.19.5",
"react-router-dom": "^6.0.2",
"svgo": "^2.8.0",
"swr": "^1.0.1",
"ts-node": "^10.7.0",
"ts-toolbelt": "^9.6.0",
"zustand": "^3.6.5"
},
"devDependencies": {
"@capacitor/android": "^3.3.1",
"@capacitor/cli": "^3.3.1",
"@capacitor/core": "^3.3.1",
"@capacitor/ios": "^3.3.1",
"@check-light-or-dark/color": "^1.0.3",
"@playwright/test": "^1.20.0",
"@storybook/addon-controls": "^6.3.12",
"@storybook/addon-docs": "^6.3.12",
"@storybook/react": "^6.3.12",
"@svgr/core": "^6.2.1",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"@vitejs/plugin-react": "^1.1.1",
"capture-website": "^2.3.0",
"chalk": "^4.1.2",
"concurrently": "^6.4.0",
"css-loader": "^6.5.1",
"dotenv": "^10.0.0",
"dotenv-parse-variables": "^2.0.0",
"enquirer": "^2.3.6",
"eslint": "^8.2.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"filehound": "^1.17.5",
"firebase-admin": "^10.0.2",
"format-duration": "^1.4.0",
"husky": "^7.0.4",
"ink": "^3.2.0",
"internal-ip": "^7.0.0",
"kill-port-process": "^3.0.1",
"live-server": "^1.2.1",
"lodash": "^4.17.21",
"node-emoji": "^1.11.0",
"ora": "^6.0.1",
"prettier": "^2.4.1",
"qrcode-terminal": "^0.12.0",
"react-refresh": "^0.11.0",
"rollup-plugin-manifest-json": "^1.5.1",
"rollup-plugin-visualizer": "^5.6.0",
"sharp": "^0.30.2",
"storybook": "^6.3.12",
"style-loader": "^3.3.1",
"tcp-port-used": "^1.0.2",
"typescript": "^4.6.2",
"vite": "^2.7.0",
"vite-plugin-compression": "^0.3.5",
"vite-plugin-html": "^2.1.1",
"vite-plugin-pwa": "^0.11.3"
}
}