forked from Serubin/pulse-sms-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.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
{
"name": "pulse-sms-web",
"version": "v1.1.2",
"description": "Pulse SMS - text from your computer.",
"license": "Apache 2.0 & MIT",
"author": {
"name": "Luke Klinker",
"email": "[email protected]",
"url": "https://luke.klinker.xyz"
},
"repository": "https://github.com/klinker-apps/pulse-sms-web",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"deploy": "npm run build; touch dist/CNAME; echo \"pulsesms.app\" > dist/CNAME; push-dir --dir=dist --branch=gh-pages --cleanup"
},
"dependencies": {
"@xkeshi/image-compressor": "^0.5.3",
"core-js": "^2.6.5",
"emoji-mart-vue-fast": "^6.1.2",
"emoji-toolkit": "^5.0.5",
"firebase": "^5.10.1",
"hotkeys-js": "^3.6.3",
"jump.js": "^1.0.2",
"linkifyjs": "^2.1.8",
"object-hash": "^1.3.1",
"reconnecting-websocket": "^3.2.2",
"vue": "^2.6.10",
"vue-color": "^2.7.0",
"vue-flatpickr-component": "^7.0.6",
"vue-h-ajax": "^0.1.3",
"vue-i18n": "^8.11.1",
"vue-router": "^3.1.3",
"vue-search-select": "^2.9.3",
"vuejs-dialog": "^1.4.0",
"vuex": "^2.3.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-eslint": "^3.11.0",
"@vue/cli-plugin-unit-jest": "^3.11.0",
"@vue/cli-service": "^3.11.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^25.0.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"grpc": "^1.23.3",
"lint-staged": "^8.1.5",
"node-sass": "^4.9.0",
"push-dir": "^0.4.1",
"sass-loader": "^7.1.0",
"sw-precache-webpack-plugin": "^0.11.5",
"vue-template-compiler": "^2.6.10",
"worker-loader": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}