-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.5 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
{
"name": "comps-front-end",
"version": "0.1.0",
"private": true,
"theme_color": "#131c2e",
"background_color": "#131c2e",
"display": "standalone",
"scripts": {
"serve": "vue-cli-service serve",
"start": "npm run serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"transfer-alpha": "rsync -e 'ssh -o StrictHostKeyChecking=no' -arP --delete --no-perms --chmod=755 dist/ compsaldy@comps.gg@cp1.alderaan.network:/var/www/alpha.comps.gg",
"deploy-alpha": "vue-cli-service build && npm run transfer-alpha",
"transfer-live": "rsync -e 'ssh -o StrictHostKeyChecking=no' -arP --delete --no-perms --chmod=755 dist/ compsaldy@comps.gg@cp1.alderaan.network:/var/www/html",
"deploy-live": "vue-cli-service build && npm run transfer"
},
"dependencies": {
"moment": "^2.29.2",
"tailwindcss": "^1.8.12",
"vue": "^2.6.12",
"vue-google-adsense": "^1.10.1",
"vue-meta": "^2.4.0",
"vue-router": "^3.2.0",
"vuex": "^3.5.1",
"vuex-persistedstate": "^4.0.0-beta.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.4.6",
"@vue/cli-plugin-eslint": "^4.4.6",
"@vue/cli-plugin-pwa": "^4.4.6",
"@vue/cli-plugin-router": "^4.4.6",
"@vue/cli-service": "^4.4.6",
"babel-eslint": "^10.1.0",
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"cssnano": "^4.1.10",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"live-server": "^1.2.1",
"postcss-cli": "^6.1.2",
"vue-template-compiler": "^2.6.12"
}
}