-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
123 lines (123 loc) · 3.69 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
{
"name": "TMDBQuasar",
"productName": "TMDB Quasar JS",
"version": "0.0.1",
"description": "TMDBQuasar Sample with Quasar",
"author": "Coding Stones<[email protected]>",
"homepage": "https://codingstones.github.io/tmdb-quasar",
"scripts": {
"clean": "node build/script.clean.js",
"dev": "node build/script.dev.js",
"build": "node build/script.build.js",
"lint": "eslint --ext .js,.vue src",
"unit": "jest",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"deploy": "gh-pages -d dist"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"mapCoverage": true,
"setupTestFrameworkScriptFile": "<rootDir>/src/setupJest.js",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!quasar-framework)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"test/e2e"
],
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
]
},
"dependencies": {
"babel-runtime": "^6.25.0",
"faker": "^4.1.0",
"fetch-jsonp": "^1.1.3",
"isomorphic-fetch": "^2.2.1",
"js-beautify": "^1.7.3",
"moment": "^2.19.1",
"node-fetch": "^1.7.3",
"qs": "^6.5.1",
"quasar-extras": "0.x",
"quasar-framework": "^0.14.6",
"vue": "^2.5.2",
"vue-progressive-image": "^2.4.1",
"vue-router": "^3.0.1",
"vuelidate": "^0.6.1",
"vuex": "^3.0.0",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"babel-core": "^6.0.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^21.0.2",
"babel-loader": "^7.0.0",
"babel-plugin-dynamic-import-node": "^1.1.0",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"colors": "^1.1.2",
"connect-history-api-fallback": "^1.1.0",
"css-loader": "^0.28.0",
"cypress": "^1.1.4",
"es6-promise": "^4.1.1",
"eslint": "^4.13.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "next",
"eventsource-polyfill": "^0.9.6",
"express": "^4.15.5",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.1",
"friendly-errors-webpack-plugin": "^1.1.3",
"gh-pages": "^1.1.0",
"glob": "^7.1.2",
"html-webpack-plugin": "^2.30.1",
"http-proxy-middleware": "^0.17.0",
"jest": "21.3.0-beta.2",
"jest-image-snapshot": "^2.2.0",
"jest-puppeteer": "^0.0.6",
"jest-serializer-vue": "^0.2.0",
"json-loader": "^0.5.7",
"module-resolver": "^1.0.0",
"opn": "^5.0.0",
"optimize-css-assets-webpack-plugin": "^3.0.0",
"postcss-loader": "^1.0.0",
"progress-bar-webpack-plugin": "^1.10.0",
"puppeteer": "^0.13.0",
"purify-css": "^1.2.6",
"shelljs": "^0.7.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"synchronous-promise": "^1.0.17",
"url-loader": "^0.5.7",
"vue-jest": "^1.0.2",
"vue-loader": "~13.3.0",
"vue-server-renderer": "^2.5.2",
"vue-style-loader": "^3.0.3",
"vue-template-compiler": "^2.5.2",
"vue-test-utils": "git+https://github.com/vuejs/vue-test-utils.git",
"webpack": "^3.5.2",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.18.2",
"webpack-merge": "^4.1.0"
}
}