-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.55 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
{
"name": "ultima",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "yarn serve",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "eslint . --ext ts,js,vue",
"lint:fix": "eslint . --ext ts,js,vue --fix",
"lint:solo": "eslint --fix",
"deploy": "yarn build && firebase deploy",
"purge": "tsc ./utils/purgeCache.ts && node ./utils/purgeCache.js"
},
"dependencies": {
"bulma": "^0.8.2",
"es6-promise": "^4.2.8",
"firebase": "^7.14.2",
"flatpickr": "^4.6.3",
"register-service-worker": "^1.7.1",
"vee-validate": "^2.2.15",
"vue": "^2.6.11",
"vue-click-outside": "^1.1.0",
"vue-file-agent": "^1.7.0",
"vue-property-decorator": "^8.4.2",
"vue-router": "^3.1.6",
"vuefire": "^2.2.2",
"vuex": "^3.3.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@types/node": "13.13.5",
"@vue/cli-plugin-pwa": "^4.3.1",
"@vue/cli-plugin-typescript": "^4.3.1",
"@vue/cli-service": "^4.3.1",
"colors": "^1.4.0",
"dotenv": "^8.2.0",
"firebase-tools": "^8.2.0",
"husky": "^4.2.5",
"sass": "1.26.5",
"sass-loader": "^8.0.2",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"tslib": "^1.11.2",
"typescript": "^3.8.3",
"vue-template-compiler": "^2.6.11"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"lint:solo",
"git add"
],
"*.ts": [
"lint:solo",
"git add"
],
"*.vue": [
"lint:solo",
"git add"
]
}
}