-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
99 lines (99 loc) · 3.32 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
{
"name": "drinkable",
"description": "cocktail app",
"version": "0.1.0",
"repository": {
"type": "???",
"url": "???"
},
"license": "MIT",
"dependencies": {
"@capacitor/android": "^6.0.0",
"@capacitor/app": "^6.0.0",
"@capacitor/clipboard": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@capacitor/filesystem": "^6.0.0",
"@capacitor/ios": "^6.0.0",
"@capacitor/preferences": "^6.0.0",
"@moimob/common": "^0.2.0",
"@supabase/supabase-js": "2.45.3",
"aurelia-animator-css": "1.0.4",
"aurelia-bootstrapper": "2.4.1",
"aurelia-dialog": "2.0.0",
"aurelia-event-aggregator": "1.0.3",
"aurelia-hotjar": "1.0.1",
"aurelia-i18n": "4.0.4",
"aurelia-validation": "2.0.0",
"base64-arraybuffer": "1.0.2",
"compressorjs": "1.2.1",
"cypress": "13.14.2",
"daisyui": "^4.4.19",
"dotenv-webpack": "8.1.0",
"i18next-http-backend": "2.6.1",
"magic-snowflakes": "6.3.0",
"postcss-preset-env": "9.6.0",
"sortablejs": "1.15.3",
"swipejs": "2.3.1",
"tiny-swiper": "2.2.0",
"ts-node": "10.9.2",
"uuid": "9.0.1"
},
"devDependencies": {
"@capacitor/cli": "^6.0.0",
"@types/jest": "29.5.12",
"@types/node": "^20.1.7",
"@types/webpack": "5.28.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"aurelia-webpack-plugin": "5.0.6",
"autoprefixer": "10.4.20",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "12.0.2",
"css-loader": "6.11.0",
"cssnano": "^6.0.0",
"duplicate-package-checker-webpack-plugin": "3.0.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.14.0",
"eslint-webpack-plugin": "^4.0.1",
"html-loader": "5.1.0",
"html-webpack-plugin": "5.6.0",
"htmlhint": "^1.1.4",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"mini-css-extract-plugin": "2.9.1",
"postcss": "8.4.45",
"postcss-loader": "8.1.1",
"prettier": "^3.0.3",
"prettier-plugin-organize-attributes": "^1.0.0",
"reflect-metadata": "0.2.2",
"sass": "1.78.0",
"sass-loader": "14.2.1",
"style-loader": "3.3.4",
"tailwindcss": "3.4.10",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"typescript": "^5.1.6",
"webpack": "^5.88.1",
"webpack-bundle-analyzer": "4.10.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.2"
},
"browserslist": [
"defaults"
],
"scripts": {
"build": "webpack --env production --env store=fdroid && npx cap copy",
"build:play-store": "webpack --env production --env store=playstore && npx cap copy",
"build:app-store": "webpack --env production --env store=appstore && npx cap copy",
"build:web": "webpack --env production --env web",
"start": "webpack serve",
"analyze": "webpack --env production --analyze",
"test": "jest",
"format": "prettier --write .",
"lint-fix": "eslint --fix --ext .ts ."
},
"engines": {
"node": ">=20.11.0"
}
}