-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.53 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": "excitation",
"version": "1.2.1",
"description": "An app that helps users generate citations for papers, articles, and other academic documents",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build && npx cap copy",
"api-start": "cd api && npm run start",
"api-dev": "cd api && npm run dev",
"cap-sync": "npx cap sync",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"update": "git pull && npm ci && cd api && npm ci",
"icons": "cordova-res ios --skip-config --copy && cordova-res android --skip-config --copy --icon-background-source '#FFFFFF'",
"deploy-api": "cd api && npm run deploy",
"deploy-hosting": "npm run build && firebase deploy --only hosting",
"android": "npx cap open android",
"ios": "npx cap open ios"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DallasHoff/excitation.git"
},
"keywords": [
"citations",
"essays",
"references",
"papers",
"articles",
"citation-generator"
],
"author": "Dallas Hoffman",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/DallasHoff/excitation/issues"
},
"homepage": "https://github.com/DallasHoff/excitation#readme",
"dependencies": {
"@capacitor/android": "^2.5.0",
"@capacitor/core": "2.4.7",
"@capacitor/ios": "^2.4.7",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/pro-regular-svg-icons": "^5.15.4",
"@fortawesome/vue-fontawesome": "^3.0.0-5",
"@ionic/vue": "^5.9.3",
"@ionic/vue-router": "^5.9.3",
"core-js": "^3.20.3",
"vue": "^3.2.27",
"vue-router": "^4.0.12",
"vuex": "^4.0.2"
},
"devDependencies": {
"@capacitor/cli": "2.4.7",
"@types/jest": "^24.0.19",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@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-typescript": "^4.5.15",
"@vue/cli-plugin-unit-jest": "^4.5.15",
"@vue/cli-service": "^4.5.15",
"@vue/compiler-sfc": "^3.2.27",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^2.0.0-rc.18",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.20.0",
"sass": "^1.48.0",
"sass-loader": "^10.2.1",
"typescript": "^3.9.10",
"vue-jest": "^5.0.0-alpha.10"
}
}