-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.88 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": "geoguess",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "export NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build && cp tmpl_app.yaml dist/app.yaml",
"build-win": "vue-cli-service build && copy tmpl_app.yaml dist/app.yaml",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e --mode development",
"test:e2e:headless": "./run_e2e_with_emulators.sh",
"lint": "vue-cli-service lint",
"publish": "gcloud builds submit --config cloudbuild.yaml --async",
"serve-locations-static": "python locations/scripts/serve.py"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "^6.0.1",
"@turf/center": "^6.0.2",
"@turf/destination": "^6.0.2",
"@turf/random": "^6.0.2",
"axios": "^0.21.4",
"core-js": "^3.6.5",
"firebase": "^8.2.7",
"human-readable-ids": "^1.0.4",
"js-cookie": "^2.2.1",
"lodash": "^4.17.21",
"parse-kml": "^1.0.1",
"sanitize-html": "^1.27.3",
"vue": "^2.6.11",
"vue-clipboard2": "^0.3.1",
"vue-router": "^3.2.0",
"vuetify": "^2.2.11",
"vuex": "^3.4.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-e2e-cypress": "~4.4.0",
"@vue/cli-plugin-eslint": "~4.4.0",
"@vue/cli-plugin-router": "~4.4.0",
"@vue/cli-plugin-unit-jest": "~4.4.0",
"@vue/cli-plugin-vuex": "^4.4.6",
"@vue/cli-service": "~4.4.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.0.3",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"firebase-tools": "^9.23.0",
"prettier": "^1.19.1",
"sass": "^1.19.0",
"sass-loader": "^8.0.0",
"vue-cli-plugin-vuetify": "~2.0.7",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.3.0"
}
}