forked from alefesouza/laravel-vue-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 3.48 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
{
"name": "laravel-vue-boilerplate",
"description": "A Laravel 5.5 SPA boilerplate with a users CRUD using Vue.js 2.5, Bootstrap 4, TypeScript, Sass, Pug and Jest.",
"version": "1.0.0",
"author": "Alefe Souza <[email protected]>",
"keywords": [
"laravel",
"vue",
"boilerplate",
"typescript",
"sass",
"scss",
"pug",
"jest"
],
"license": "MIT",
"scripts": {
"start": "yarn && yarn test && yarn prod",
"dev": "yarn 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": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch-poll": "yarn watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "yarn 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",
"test": "cross-env NODE_ENV=test jest"
},
"dependencies": {
"@websanova/vue-auth": "^2.21.11-beta",
"axios": "^0.17.1",
"bootstrap": "^4.1.1",
"bootstrap-vue": "^2.0.0-rc.11",
"laravel-echo": "^1.4.0",
"promise-polyfill": "^8.0.0",
"pusher-js": "^4.2.2",
"vue": "^2.5.13",
"vue-awesome": "^2.3.7",
"vue-axios": "^2.1.1",
"vue-modal-dialogs": "^3.0.0",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-i18n": "^1.10.5"
},
"devDependencies": {
"@types/faker": "^4.1.2",
"@types/jest": "^22.2.3",
"@types/vuex-i18n": "^1.7.0",
"@vue/test-utils": "^1.0.0-beta.16",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.1.6",
"faker": "^4.1.0",
"jest": "^23.0.1",
"jest-junit": "^4.0.0",
"jest-serializer-vue": "^1.0.0",
"jest-vue-preprocessor": "^1.4.0",
"laravel-mix": "^2.1.11",
"pug": "^2.0.3",
"ts-jest": "^22.4.6",
"ts-loader": "^3.5.0",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "^2.8.3",
"vue-class-component": "^6.2.0",
"vue-property-decorator": "^6.1.0",
"vue-server-renderer": "2.5.13",
"vuex-class": "^0.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alefesouza/laravel-vue-boilerplate.git"
},
"bugs": {
"url": "https://github.com/alefesouza/laravel-vue-boilerplate/issues"
},
"homepage": "https://github.com/alefesouza/laravel-vue-boilerplate#readme",
"jest": {
"globals": {
"baseUrl": ""
},
"moduleFileExtensions": [
"ts",
"js",
"json",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/resources/assets/vue/$1"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
],
"testRegex": "tests/vue/.*.spec\\.(js|ts)$",
"testResultsProcessor": "jest-junit",
"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"
}
}