-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.36 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "bento-build-test",
"version": "1.0.0",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:e2e": "vue-cli-service test:e2e",
"test:e2e:headless": "vue-cli-service test:e2e --headless",
"test:unit": "vue-cli-service test:unit",
"prettier:format-all": "prettier --write \"**/*.{vue,scss,sass,js,json}\"",
"prettier:check": "prettier \"**/*.{vue,scss,sass,js,json}\" --list-different",
"firebase:deploy:ci": "firebase deploy --non-interactive --token $FIREBASE_TOKEN",
"bundlesize": "bundlesize"
},
"engines": {
"npm": ">=5.5.0",
"node": ">=9.3.0"
},
"dependencies": {
"core-js": "^3.1.3",
"firebase": "^6.0.4",
"is_js": "^0.9.0",
"lodash": "^4.17.11",
"pwacompat": "^2.0.9",
"register-service-worker": "^1.6.2",
"vue": "^2.6.10",
"vue-head": "^2.1.1",
"vue-router": "^3.0.6",
"vuex": "^3.1.1"
},
"devDependencies": {
"@types/lodash": "^4.14.132",
"@vue/cli-plugin-babel": "^3.8.0",
"@vue/cli-plugin-e2e-cypress": "^3.8.0",
"@vue/cli-plugin-eslint": "^3.8.0",
"@vue/cli-plugin-pwa": "^3.8.0",
"@vue/cli-plugin-unit-jest": "^3.8.0",
"@vue/cli-service": "^3.8.0",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-lodash": "^3.3.4",
"bundlesize": "github:kefranabg/bundlesize",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-google": "^0.13.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-vue": "^5.2.2",
"firebase-tools": "^6.10.0",
"node-sass": "^4.12.0",
"prerender-spa-plugin": "^3.4.0",
"sass-loader": "^7.1.0",
"vue-template-compiler": "^2.6.10",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-merge": "^4.2.1"
},
"bundlesize": [
{
"path": "./dist/js/chunk-vendors*.js",
"maxSize": "125 kB"
},
{
"path": "./dist/js/chunk-firestore*.js",
"maxSize": "95 kB"
},
{
"path": "./dist/js/app*.js",
"maxSize": "15 kB"
},
{
"path": "./dist/js/client-chunk-*.js",
"maxSize": "6 kB"
}
],
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/prettier"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"vue"
],
"transform": {
"^.+\\.vue$": "vue-jest",
".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub",
"^.+\\.jsx?$": "babel-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"snapshotSerializers": [
"jest-serializer-vue"
],
"testMatch": [
"**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"
],
"testURL": "http://localhost/",
"setupTestFrameworkScriptFile": "<rootDir>/tests/unit/setup.js"
},
"readme": "ERROR: No README data found!",
"_id": "[email protected]"
}