forked from CSU-Booking-Platform/application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.95 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
{
"private": true,
"scripts": {
"reset": "rm -rf package-lock.json && npm install",
"reset-full": "rm -rf node_modules/* && npm run reset",
"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",
"test": "jest",
"test-ci": "jest --ci --runInBand --reporters=default --reporters=jest-junit",
"performance": "dotenv -- artillery run tests/Artillery/load-tests.yml -o reports/artillery -- && npm run performance-report",
"performance-report": "cd ./reports/artillery; for i in *.json; do $(artillery report $i); done",
"heroku-postbuild": "npm run production"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.5",
"@inertiajs/inertia": "^0.3.6",
"@inertiajs/inertia-vue": "^0.2.4",
"@jest/globals": "^26.6.2",
"@tailwindcss/ui": "^0.7.2",
"@vue/test-utils": "^1.1.2",
"artillery": "^1.6.1",
"artillery-plugin-metrics-by-endpoint": "^0.1.1",
"axios": "^0.21",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"create-file-list": "^1.1.0",
"cross-env": "^7.0",
"dotenv": "^8.2.0",
"dotenv-cli": "^4.0.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"jest-sonar-reporter": "^2.0.0",
"laravel-jetstream": "^1.2.0",
"laravel-mix": "^5.0.9",
"lodash": "^4.17.19",
"moment": "^2.29.1",
"moxios": "^0.4.0",
"node-notifier": "^10.0.1",
"portal-vue": "^2.1.7",
"postcss-import": "^12.0.1",
"resolve-url-loader": "^3.1.2",
"tailwindcss": "^1.9.6",
"tiptap": "^1.32.1",
"tiptap-extensions": "^1.35.1",
"vue": "^2.6.12",
"vue-ctk-date-time-picker": "^2.5.0",
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.6.12"
},
"jest": {
"collectCoverage": true,
"testResultsProcessor": "jest-sonar-reporter",
"coverageDirectory": "reports/js",
"collectCoverageFrom": [
"<rootDir>/resources/js/Pages/**/*.{js,vue}",
"<rootDir>/resources/js/Components/**/*.{js,vue}",
"<rootDir>/resources/js/Layouts/**/*.{js,vue}",
"<rootDir>/resources/js/Plugins/**/*.{js,vue}"
],
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transformIgnorePatterns": [
"/node_modules/(?!vue)"
],
"transform": {
".*\\.(vue)$": "vue-jest",
".*\\.(js)$": "babel-jest"
},
"roots": [
"<rootDir>/resources/js",
"<rootDir>/tests/Javascript"
],
"moduleNameMapper": {
"^@src/(.*)$": "<rootDir>/resources/js/$1",
"^@test/(.*)$": "<rootDir>/tests/Javascript/$1"
}
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"corejs": false,
"regenerator": true
}
]
]
},
"jestSonar": {
"reportPath": "reports/js"
},
"dependencies": {
"v-calendar": "^2.4.1",
"vue-simple-calendar": "^5.0.0"
}
}