-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.45 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
{
"name": "merry-stories",
"version": "0.1.9",
"private": false,
"license": "BSD-3-Clause",
"author": "Drew Markel",
"repository": "https://github.com/drewmrk/Merry-Stories",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"core-js": "3.6.5",
"crypto-random-string": "3.2.0",
"firebase": "7.17.1",
"random-color": "1.0.1",
"register-service-worker": "1.7.1",
"super-tiny-icons": "0.3.2",
"vue": "2.6.11",
"vue-gtag": "1.8.0",
"vue-router": "3.3.4",
"vuefire": "2.2.3",
"vuex": "3.5.1"
},
"devDependencies": {
"@babel/core": "7.10.5",
"@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-plugin-vuex": "4.4.6",
"@vue/cli-service": "4.4.6",
"@vue/eslint-config-prettier": "6.0.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"babel-preset-vue": "2.0.2",
"cssnano": "4.1.10",
"eslint": "7.5.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-vue": "6.2.2",
"lint-staged": "10.2.11",
"node-sass": "4.14.1",
"prettier": "2.0.5",
"sass-loader": "9.0.2",
"vue-template-compiler": "2.6.11"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}