forked from Hasnayeen/invobook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.69 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.69 KB
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
{
"private": true,
"scripts": {
"dev": "node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"build": "node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"observe": "node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"watch-prod": "node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=production node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"test": "jest",
"watch:test": "jest --watch --bail"
},
"dependencies": {
"laravel-echo-server": "^1.6.0",
"vue-template-compiler": "^2.5.21"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-regular-svg-icons": "^5.12.0",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/vue-fontawesome": "^0.1.8",
"axios": "^0.19.0",
"cross-env": "^6.0.3",
"fuzzysort": "^1.1.4",
"glob-all": "^3.1.0",
"laravel-echo": "^1.6.1",
"laravel-mix": "^5.0.0",
"linkifyjs": "^2.1.8",
"luxon": "^1.21.3",
"purgecss-webpack-plugin": "^1.6.0",
"quill": "^1.3.7",
"quill-plugin-image-upload": "^0.0.6",
"tailwindcss": "^1.1",
"vue": "^2.5.21",
"vue-click-outside": "^1.0.7",
"vuejs-datepicker": "^1.6.2",
"vuex": "^3.1.2",
"webpack": "^4.41.0"
},
"resolutions": {
"set-value": "^2.0.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"moduleNameMapper": {
"^vue$": "vue/dist/vue.common.js"
},
"moduleDirectories": [
"node_modules",
"<rootDir>/resources/assets/js/"
],
"setupTestFrameworkScriptFile": "<rootDir>/tests/JS/setup.js",
"transform": {
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"roots": [
"<rootDir>/resources/assets/js/",
"<rootDir>/tests/JS/"
]
},
"standard": {
"ignore": [
"public/",
"webpack.config.js",
"webpack.mix.js"
],
"globals": [
"Vue",
"axios",
"luxon",
"Laravel",
"Echo",
"describe",
"test",
"expect",
"jest",
"it",
"EventBus"
]
},
"plugins": [
"html"
],
"version": "0.0.0"
}