-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 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
45
46
47
48
49
50
51
52
53
{
"name": "pgproxy",
"version": "1.2.0",
"private": true,
"scripts": {
"hash": "NUXT_ENV_CURRENT_GIT_SHA=`git rev-parse --short HEAD`",
"dev": "yarn hash nuxt-ts",
"build": "yarn hash nuxt-ts generate",
"start": "yarn hash nuxt-ts start",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint": "yarn lint:js",
"bump": "yarn build && standard-version && git push --follow-tags origin master && firebase deploy"
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxt/typescript-runtime": "2.0.1",
"@nuxtjs/pwa": "3.3.4",
"axios": "0.21.1",
"bootstrap": "4.6.0",
"bootstrap-vue": "2.21.2",
"core-js": "3.8.3",
"nuxt": "2.14.12",
"openpgp": "4.10.9",
"qrcode-generator": "1.4.4"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@nuxt/types": "2.14.12",
"@nuxt/typescript-build": "2.0.4",
"@nuxtjs/eslint-config": "3.1.0",
"@nuxtjs/eslint-config-typescript": "3.0.0",
"@nuxtjs/eslint-module": "2.0.0",
"@types/openpgp": "4.4.14",
"babel-eslint": "10.1.0",
"eslint": "7.18.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-nuxt": "1.0.0",
"eslint-plugin-prettier": "3.3.1",
"husky": "4.3.8",
"lint-staged": "10.5.3",
"prettier": "2.2.1",
"standard-version": "9.1.0"
}
}