-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.97 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
{
"name": "foodizzy",
"version": "1.1.0",
"private": true,
"engines": {
"node": "16",
"npm": "8"
},
"scripts": {
"start": "npm run serve-dev & npm run emulate",
"serve": "vue-cli-service serve --mode production",
"serve-dev": "vue-cli-service serve --mode development",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"lint:no-fix": "vue-cli-service lint --no-fix",
"deploy": "firebase deploy",
"deploy:staging": "firebase hosting:channel:deploy staging",
"emulate": "npm run watch --prefix functions & npx firebase emulators:start --import ./emulator_data",
"emulate:export": "firebase emulators:start --import ./emulator_data --export-on-exit ./emulator_data",
"emulators:export-data": "firebase emulators:export ./emulator_data",
"emulators-sync:allProducts": "tsc src/utils/EmulatorSync.ts --outDir ./temp --esModuleInterop --resolveJsonModule && node temp/EmulatorSync.js && rm -rf temp",
"test:open": "npx cypress open",
"test:emulate": "export google_cloud_project=\"foodizzy-app\" && cross-env FIREBASE_AUTH_EMULATOR_HOST=\"localhost:9099\" FIRESTORE_EMULATOR_HOST=\"localhost:8888\" npm run test:open",
"test": "export google_cloud_project=\"foodizzy-app\" && cross-env FIREBASE_AUTH_EMULATOR_HOST=\"localhost:9099\" FIRESTORE_EMULATOR_HOST=\"localhost:8888\" npx cypress run --headless --browser chrome"
},
"dependencies": {
"@tailwindcss/custom-forms": "^0.2.1",
"@tailwindcss/postcss7-compat": "^2.0.2",
"@tensorflow/tfjs": "^3.3.0",
"@tensorflow/tfjs-node": "^3.3.0",
"@types/chart.js": "^2.9.29",
"@types/jbinary": "^0.0.30",
"@types/node": "^14.14.37",
"autoprefixer": "^9",
"aws-sdk": "^2.884.0",
"axios": "^0.21.1",
"chart.js": "^2.9.4",
"core-js": "^3.6.5",
"dotenv": "^8.2.0",
"firebase": "8.3.0",
"firebase-admin": "^9.5.0",
"firebase-tools": "^9.10.1",
"postcss": "^7",
"register-service-worker": "^1.7.1",
"seedrandom": "^3.0.5",
"tailwindcss": "^1.9.4",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-pwa": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"cross-env": "^7.0.3",
"cypress": "^7.1.0",
"cypress-firebase": "^1.8.0",
"cypress-log-to-output": "^1.1.2",
"eslint": "^6.7.2",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"prettier": "^1.19.1",
"typescript": "~3.9.3",
"vue-cli-plugin-tailwind": "^2.0.5",
"vue-template-compiler": "^2.6.11"
}
}