-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (133 loc) · 4.09 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
130
131
132
133
134
{
"name": "firefly",
"description": "Home Automation",
"author": "Shaun Sweet",
"scripts": {
"clean": "node build/script.clean.js",
"commitmsg": "commitlint -e $GIT_PARAMS",
"start": "node build/script.dev.js",
"lint": "eslint --ext js,vue ./src --fix",
"build": "node build/script.build.js",
"deploy": "npm run local-build && cd /home/shaun/projects/firefly/public/dev/ && firebase deploy --only hosting",
"local-build": "node build/script.build.js && rm -r /home/shaun/projects/firefly/public/dev/ && mkdir /home/shaun/projects/firefly/public/dev/ && mv dist/* /home/shaun/projects/firefly/public/dev/",
"test": "jest",
"linting": "eslint --ext js,vue ./src --fix",
"precommit": "npm run lint"
},
"release": {
"branch": "next"
},
"dependencies": {
"babel-runtime": "^6.25.0",
"firebase": "^4.6.0",
"fuse.js": "^3.2.0",
"moment": "^2.19.1",
"promise-polyfill": "^6.0.2",
"quasar-extras": "0.x",
"quasar-framework": "^0.14.6",
"vue": "~2.3.4",
"vue-router": "^2.8.1",
"vuex": "^2.5.0"
},
"devDependencies": {
"@commitlint/cli": "^4.3.0",
"@commitlint/config-angular": "^4.3.0",
"autoprefixer": "^6.4.0",
"babel-core": "^6.0.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^21.2.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"colors": "^1.1.2",
"connect-history-api-fallback": "^1.4.0",
"copy-webpack-plugin": "^4.2.0",
"css-loader": "^0.28.0",
"es6-promise": "^4.1.1",
"eslint": "^4.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^4.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^3.14.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^0.11.1",
"firebase-tools": "^3.14.0",
"friendly-errors-webpack-plugin": "^1.1.3",
"glob": "^7.1.2",
"html-webpack-plugin": "^2.30.1",
"http-proxy-middleware": "^0.17.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"jest-vue-preprocessor": "^1.3.1",
"json-loader": "^0.5.7",
"opn": "^5.0.0",
"optimize-css-assets-webpack-plugin": "^3.0.0",
"postcss-loader": "^1.0.0",
"prettier-standard": "^7.0.3",
"progress-bar-webpack-plugin": "^1.10.0",
"purify-css": "^1.2.6",
"semantic-release": "^8.2.0",
"semantic-release-github": "^3.0.0",
"shelljs": "^0.7.0",
"standard-loader": "^6.0.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"sw-precache-webpack-plugin": "^0.11.4",
"uglify-es": "^3.1.6",
"url-loader": "^0.5.7",
"vue-loader": "~12.2.2",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "~2.3.4",
"vue-test-utils": "^1.0.0-beta.6",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0",
"webpack-merge": "^4.1.0"
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
]
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"collectCoverageFrom": [
"**/*.{vue}",
"**/*.{js}"
],
"modulePathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/config/",
"<rootDir>/coverage/"
],
"transformIgnorePatterns": [
"node_modules/core-js",
"node_modules/babel-runtime",
"node_modules/lodash",
"node_modules/vue"
],
"mapCoverage": true,
"moduleNameMapper": {
"^src/(.*)$": "<rootDir>/src/$1",
"^vue$": "vue/dist/vue.common.js",
"^@/(.*)$": "<rootDir>/src/components/$1",
"quasar": "quasar-framework/dist/quasar.esm.js"
},
"transform": {
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
}
}
}