-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.81 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
{
"name": "laravel6-vuejs-kickstarter",
"description": "A Laravel 6 Single Page Application boilerplate using Vue.js 2.6, GraphQL, Bootstrap 4, TypeScript, Sass, Pug and Jest",
"version": "1.0.0",
"author": "Mario Labate <[email protected]>",
"keywords": [
"laravel",
"vue",
"boilerplate",
"typescript",
"sass",
"scss",
"pug",
"jest"
],
"license": "MIT",
"scripts": {
"start": "npm install && npm test && npm run prod",
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --disable-host-check --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"ci": "cross-env NODE_ENV=ci node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"test": "cross-env NODE_ENV=test jest"
},
"dependencies": {
"@websanova/vue-auth": "^2.21.16-beta",
"apollo-boost": "^0.4.7",
"axios": "^0.19.2",
"bootstrap": "^4.4.1",
"bootstrap-vue": "^2.4.2",
"graphql": "^14.6.0",
"laravel-echo": "^1.6.1",
"promise-polyfill": "^8.1.3",
"pusher-js": "^5.1.1",
"vue": "^2.6.11",
"vue-apollo": "^3.0.3",
"vue-awesome": "^4.0.2",
"vue-axios": "^2.1.5",
"vue-modal-dialogs": "^3.0.0",
"vue-router": "^3.1.5",
"vuex": "^3.1.2",
"vuex-i18n": "^1.13.1"
},
"devDependencies": {
"@types/faker": "^4.1.9",
"@types/jest": "^25.1.2",
"@types/node": "^13.7.1",
"@vue/test-utils": "^1.0.0-beta.28",
"babel-preset-env": "^1.7.0",
"cross-env": "5.2.0",
"faker": "^4.1.0",
"jest": "^23.6.0",
"jest-junit": "^6.0.1",
"jest-serializer-vue": "^2.0.2",
"jest-vue-preprocessor": "^1.7.1",
"laravel-mix": "^5.0.1",
"pug": "^2.0.4",
"pug-plain-loader": "^1.0.0",
"sass": "^1.25.0",
"sass-loader": "^8.0.2",
"ts-jest": "23.10.5",
"ts-loader": "^6.2.1",
"tslint": "^6.0.0",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.7.5",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^8.4.0",
"vue-server-renderer": "2.6.11",
"vue-template-compiler": "^2.6.11",
"vuex-class": "^0.3.2",
"webpack-bundle-analyzer": "^3.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlabate/laravel6-vuejs-kickstarter.git"
},
"bugs": {
"url": "https://github.com/mlabate/laravel6-vuejs-kickstarter/issues"
},
"homepage": "https://github.com/mlabate/laravel6-vuejs-kickstarter#readme",
"jest": {
"globals": {
"baseUrl": ""
},
"moduleFileExtensions": [
"ts",
"js",
"json",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/resources/assets/vue/$1"
},
"reporters": [
"default",
"jest-junit"
],
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
],
"testRegex": "tests/vue/.*.spec\\.(js|ts)$",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.vue$": "<rootDir>/node_modules/jest-vue-preprocessor",
".*\\.ts$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(vue-modal-dialogs|vuex-i18n|vue-awesome))"
]
},
"jest-junit": {
"ancestorSeparator": " › ",
"suiteName": "Jest Tests",
"output": "./tests-jest.xml"
}
}