-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathpackage.json
77 lines (77 loc) · 2.19 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
{
"name": "laravel-vue-boilerplate",
"description": "A Laravel 8 SPA boilerplate with a users CRUD using Vue.js 2.6, Bootstrap 4, TypeScript, Sass and Pug.",
"version": "1.0.0",
"author": "Alefe Souza <contact@alefesouza.com>",
"keywords": [
"laravel",
"vue",
"boilerplate",
"typescript",
"sass",
"scss",
"pug"
],
"license": "MIT",
"scripts": {
"start": "npm install && npm test && npm run prod",
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production"
},
"dependencies": {
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-link-context": "^1.0.20",
"apollo-link-error": "^1.1.13",
"apollo-upload-client": "^14.1.3",
"axios": "^0.19.2",
"bootstrap": "^4.6.0",
"bootstrap-vue": "^2.21.2",
"graphql": "^15.5.0",
"laravel-echo": "^1.10.0",
"nprogress": "^0.2.0",
"promise-polyfill": "^8.2.0",
"pusher-js": "^7.0.3",
"vue": "^2.6.12",
"vue-apollo": "^3.0.7",
"vue-axios": "^3.2.4",
"vue-modal-dialogs": "^3.0.0",
"vue-router": "^3.5.1",
"vuex": "^3.6.2",
"vuex-i18n": "^1.13.1"
},
"devDependencies": {
"laravel-mix": "^6.0.18",
"laravel-mix-workbox": "^0.1.4",
"postcss": "^8.2.13",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"sass": "^1.32.12",
"sass-loader": "^11.0.1",
"ts-loader": "^6.2.1",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^4.2.4",
"vue-class-component": "^7.2.6",
"vue-loader": "^15.9.6",
"vue-property-decorator": "^9.1.2",
"vue-template-compiler": "^2.6.12",
"vuex-class": "^0.3.2",
"webpack-bundle-analyzer": "^4.4.1",
"workbox-webpack-plugin": "^6.1.5",
"worker-loader": "^3.0.8"
},
"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"
}