-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 2.02 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
{
"name": "alcata-project",
"version": "1.0.0",
"description": "Project made with Alcata Framework",
"main": "index.js",
"keywords": [
"capacitor",
"mobile"
],
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"dev": "npm run start",
"sync": "npx cap sync",
"android": "npm run build && npx cap run android",
"assets": "npx capacitor-assets generate --android",
"compile:before": "npm run build && npm run assets",
"compile": "npm run compile:before && npx cap sync android && cd android/ && ./gradlew build && echo \"\nCompiled over android/app/build/outputs/apk/release\n\"",
"signed": "npm run compile:before && npx cap sync android && cd android/ && ./gradlew assembleRelease --stacktrace && echo \"\nCompiled over android/app/build/outputs/apk/release\n\"",
"bundle": "npm run compile:before && npx cap sync android && cd android/ && ./gradlew bundleRelease --stacktrace && echo \"\nCompiled over android/app/build/outputs/bundle/release\n\""
},
"dependencies": {
"@alpinejs/persist": "^3.14.1",
"@capacitor/android": "^6.1.0",
"@capacitor/app": "^6.0.0",
"@capacitor/core": "^6.1.0",
"alpinejs": "^3.14.1",
"alpinejs-component": "^1.2.7",
"alpinejs-i18n": "^2.4.2",
"encrypt-storage": "^2.13.2",
"lz-string": "^1.5.0",
"pinecone-router": "^4.4.0",
"validatorjs": "^3.22.1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^6.1.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"@types/alpinejs": "^3.13.10",
"@types/alpinejs__persist": "^3.13.4",
"@types/validatorjs": "^3.15.5",
"autoprefixer": "^10.4.19",
"dot-env": "^0.0.1",
"dotenv-webpack": "^8.1.0",
"postcss": "^8.4.39",
"tailwindcss": "^3.4.4",
"terser": "^5.31.2",
"vite": "^5.3.3",
"vite-plugin-html": "^3.2.2",
"vite-plugin-html-inject": "^1.1.2",
"vite-plugin-javascript-obfuscator": "^3.1.0"
}
}