-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
100 lines (100 loc) · 2.87 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
{
"private": true,
"scripts": {
"test": "jest",
"dev": "npm run development",
"development": "npm run i18n & 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": "npm run i18n & 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": "npm run production",
"production": "npm run i18n & cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"lowmem": "NODE_OPTIONS=--max_old_space_size=1024 npm run production",
"i18n": "php artisan vue-i18n:generate"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"axios": "^0.21.4",
"axios-mock-adapter": "^1.18.1",
"bootstrap": "^4.5.0",
"cross-env": "^7.0.2",
"date-fns": "^2.14.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.17.1",
"eslint-plugin-vue": "^6.2.2",
"flag-icon-css": "^3.5.0",
"jquery": "^3.5.1",
"laravel-mix": "^5.0.4",
"lodash": "^4.17.21",
"popper.js": "^1.16.1",
"resolve-url-loader": "^3.1.1",
"sass": "^1.26.9",
"sass-loader": "^8.0.2",
"spark-md5": "^3.0.1",
"ts-loader": "^6.2.2",
"typescript": "^3.9.5",
"v-tooltip": "^2.0.3",
"vue": "^2.6.11",
"vue-i18n": "^8.18.2",
"vue-slider-component": "^3.1.5",
"vue-template-compiler": "^2.6.11",
"vue-timeago": "^5.1.2",
"vuex": "^3.4.0",
"webpack-bundle-analyzer": "^3.8.0"
},
"dependencies": {
"@maseya/z3pr": "^1.0.1",
"@sentry/browser": "^5.18.1",
"@stardazed/zlib": "^1.0.1",
"ajv": "^6.12.2",
"center-align": "^1.0.1",
"es6-promise": "^4.2.8",
"file-saver": "^2.0.2",
"localforage": "^1.7.4",
"open-iconic": "^1.1.1",
"prando": "^5.1.2",
"vue-js-toggle-button": "^1.3.3",
"vue-multiselect": "^2.1.6"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/resources/js/components/$1",
"^.+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
".+\\.(css|styl|less|sass|scss|png|jpg|svg|ttf|woff|woff2)$": "jest-transform-stub"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
],
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"babel": {
"env": {
"test": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}
}
}