-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
173 lines (173 loc) · 5.76 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"name": "scotdance",
"version": "3.10.0",
"type": "module",
"description": "Highland dancing event tracker",
"author": "Murray Rowan <[email protected]>",
"scripts": {
"is:cy": "touch ./functions/IS_CYPRESS",
"not:cy": "rm -rf ./functions/IS_CYPRESS",
"emulate:firebase": "firebase emulators:start --import=.firebase/emulator-data",
"emulate:typesense": "./typesense-server --log-dir .typesense/logs --data-dir .typesense/emulator-data --listen-port=8108 --api-key=xyz --enable-cors",
"dev:functions": "npm run --prefix functions/ dev",
"dev:www": "vite",
"dev:production": "run-p not:cy dev:functions \"emulate:firebase -- --export-on-exit\" emulate:typesense \"dev:www -- --open --browser=chrome --e2e '/?production'\"",
"dev": "run-p not:cy dev:functions \"emulate:firebase -- --export-on-exit\" emulate:typesense dev:www",
"dev:cy": "run-p is:cy dev:functions emulate:firebase emulate:typesense \"dev:www -- --open '/?cypress'\" \"cy -- open --browser=chrome --e2e\"",
"dev:cy:ci": "run-s build:www test:cy:ci",
"cy": "CYPRESS_BASE_URL=https://localhost:3000 cypress",
"cy:ci": "CYPRESS_BASE_URL=http://localhost:5050 cypress",
"test:cy:ci": "npm run is:cy && firebase emulators:exec \"npm run cy:ci -- run --browser=chrome --e2e\"",
"test": "npm run lint && npm run build:ci && npm run test:cy:ci",
"lint:www": "eslint './{src,cypress}/**/*.{js,ts,vue}'",
"lint:functions": "npm run --prefix functions/ lint",
"lint": "npm run lint:www && npm run lint:functions",
"lint:fix": "npm run lint:www -- --fix && npm run lint:functions -- -- --fix",
"set-version": "node ./set-version.js",
"postset-version": "npx cap copy",
"sync-version": "pilfer-package version > public/version.json && npm run set-version -- $npm_package_version",
"notify": "node ./notify.js",
"resources": "cordova-res ios --skip-config --copy && cordova-res android --skip-config --copy",
"screenshots": "bash ./ios/App/Screenshots/Screenshots.sh",
"build:www": "vite build",
"build:functions": "npm run --prefix functions/ build",
"build:ci": "npm run build:www && npm run build:functions",
"build": "npm run lint && npm run build:ci && npm run sync-version && npx cap sync && npm run notify 'Build Complete'",
"report": "npx vite-bundle-visualizer && open stats.html",
"release": "git commit -a -m $npm_package_version && git tag \"v${npm_package_version}\"",
"deploy": "firebase deploy && git push origin HEAD:main --tags"
},
"dependencies": {
"@capacitor/android": "^6.1.1",
"@capacitor/core": "^6.1.1",
"@capacitor/device": "6.0.1",
"@capacitor/ios": "^6.1.1",
"@capacitor/splash-screen": "6.0.2",
"@googlemaps/js-api-loader": "^1.16.6",
"@handsontable/vue": "^11.1.0",
"@mdi/js": "^5.9.55",
"@mismith/firebase-tools": "^1.4.1",
"@outluch/v-file": "^1.0.0",
"array-move-multiple": "^1.0.5",
"compare-versions": "^3.6.0",
"deep-property": "^1.1.0",
"fast-html-parser": "^1.0.1",
"firebase": "^10.11.0",
"fuse.js": "^7.0.0",
"handsontable": "^11.1.0",
"lodash.debounce": "^4.0.8",
"lodash.find": "^4.6.0",
"lodash.groupby": "^4.6.0",
"lodash.orderby": "^4.6.0",
"lodash.pick": "^4.4.0",
"md5": "^2.3.0",
"moment": "^2.29.2",
"node-notifier": "^8.0.2",
"obj-flatten": "^2.0.6",
"roboto-fontface": "*",
"sanitize-html": "^2.5.2",
"save-csv": "^4.1.0",
"simple-line-icons": "^2.5.5",
"vue": "^2.7.16",
"vue-async-computed": "^3.9.0",
"vue-body-class": "^2.0.0-beta.2",
"vue-localstorage": "^0.6.2",
"vue-observe-visibility": "^0.4.6",
"vue-reactive-provide": "^0.3.0",
"vue-router": "^3.4.3",
"vue-scrollto": "^2.18.2",
"vuedraggable": "^2.24.1",
"vuefire": "^1.4.4",
"vuetify": "^2.7.2",
"vuex": "^3.5.1",
"vuex-map-fields": "^1.4.0",
"vuexfire": "^2.3.0",
"xlsx": "^0.18.2"
},
"devDependencies": {
"@capacitor/cli": "^6.1.1",
"@vitejs/plugin-vue2": "^2.3.1",
"autoprefixer": "^10.3.7",
"cypress": "^13.8.0",
"cypress-file-upload": "^5.0.8",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-vue": "^7.20.0",
"firebase-admin": "^10.0.2",
"firebase-tools": "^13.7.1",
"lint-staged": "^11.2.4",
"npm-run-all": "^4.1.5",
"pilfer-package": "^1.0.0",
"postcss": "^8.3.11",
"sass": "^1.26.11",
"unplugin-vue-components": "^0.27.3",
"vite": "^5.3.5",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-mkcert": "^1.17.5",
"vue-template-compiler": "^2.7.16"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 2020
},
"settings": {
"import/resolver": {
"alias": {
"map": [
[
"@",
"./src"
]
]
}
}
},
"extends": [
"plugin:cypress/recommended",
"plugin:vue/essential",
"airbnb-base"
],
"rules": {
"arrow-body-style": 0,
"max-len": 0,
"no-unused-vars": 1,
"import/no-cycle": 0,
"vue/no-mutating-props": 1,
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"**/*.test.js",
"**/*.spec.js",
"cypress/**/*"
]
}
]
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 11"
],
"engines": {
"node": ">=20"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mismith/scotdance.git"
}
}