forked from SwipesForScience/SwipesForScience
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.14 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.14 KB
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
{
"name": "swipes-for-science",
"version": "1.0.0",
"private": true,
"author": "akeshavan <keshavan@berkeley.edu>",
"scripts": {
"serve": "vue-cli-service serve",
"start-emulator:imageswipe": "firebase emulators:start --import=./firebase-emulator/fixtures/sample-imageswipe-test/saved-data",
"start-emulator:wordswipe": "firebase emulators:start --import=./firebase-emulator/fixtures/sample-wordswipe-test/saved-data",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@vee-validate/rules": "^4.5.7",
"@vueuse/firebase": "^6.7.4",
"axios": "^0.23.0",
"bootstrap": "^4.5.0",
"bootstrap-vue": "^2.15.0",
"core-js": "^3.18.3",
"firebase": "^9.1.3",
"flickity": "^2.3.0",
"font-awesome": "^4.7.0",
"gsap": "^3.8.0",
"interactjs": "^1.10.11",
"lodash": "^4.17.21",
"reset-css": "^5.0.1",
"vee-validate": "^4.5.2",
"vue": "^3.2.20",
"vue-images-loaded": "^1.1.2",
"vue-progressive-image": "^3.2.0",
"vue-router": "^4.0.12",
"vue-scrollto": "^2.20.0",
"vue-shortkey": "^3.1.7",
"vue-spinner": "^1.0.4",
"vue2-hammer": "^2.1.2",
"vuefire": "^1.4.5",
"worker-loader": "^2.0.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.15",
"@vue/cli-plugin-e2e-cypress": "~4.5.15",
"@vue/cli-plugin-eslint": "~4.5.15",
"@vue/cli-plugin-router": "~4.5.15",
"@vue/cli-plugin-unit-mocha": "~4.5.15",
"@vue/cli-plugin-vuex": "~4.5.15",
"@vue/cli-service": "~4.5.15",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^2.0.0-alpha.1",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.19.1",
"firebase-admin": "^10.0.0",
"include-media": "^1.4.10",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"sass": "^1.43.2",
"sass-loader": "^10.2.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint"
]
}
}