-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 2.76 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
109
{
"name": "bedpost",
"private": true,
"dependencies": {
"@popperjs/core": "^2.10.1",
"@rails/ujs": "^6.1.4-1",
"@rails/webpacker": "^5.4.3",
"@vue/compiler-sfc": "^3.2.11",
"axios": "^0.21.4",
"chart.js": "^2.0.0",
"flickity": "^2.2.2",
"gsap": "^3.7.1",
"i18n-js": "^3.8.0",
"include-media-or": "^1.0.3",
"jest": "^27.2.0",
"rails-erb-loader": "^5.5.2",
"v-calendar": "^2.3.2",
"vue": "^2.6.14",
"vue-chartjs": "^3.5.1",
"vue-loader": "^15.9.8",
"vue-select": "^3.13.0",
"vue-template-compiler": "^2.6.14",
"vue-tippy": "^4.11.0",
"vue-tour": "^2.0.0",
"vue-turbolinks": "^2.2.2",
"vuelidate": "^0.7.4"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@testing-library/jest-dom": "^5.14.1",
"@vue/test-utils": "^1.2.2",
"axe-core": "^4.3.3",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^27.2.0",
"babel-loader": "^8.2.2",
"browserslist": "^4.17.0",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.17.3",
"css-loader": "^5.0.0",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-jsdoc": "^36.1.0",
"eslint-plugin-vue": "^7.17.0",
"jest-axe": "^5.0.1",
"node-sass": "^5.0.0",
"sass-loader": "10.1.1",
"vue-jest": "^3.0.4",
"webpack": "^4.0.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "~3"
},
"scripts": {
"test": "jest --collectCoverage=false",
"test-watch": "jest --watch --collectCoverage=false"
},
"jest": {
"globals": {
"I18nConfig": {
"locale": "en",
"defaultLocale": "en",
"translations": {}
},
"vue-jest": {
"babelConfig": {
"configFile": "./babel.config.js"
}
}
},
"testEnvironment": "jsdom",
"roots": [
"<rootDir>/app"
],
"verbose": true,
"testURL": "http://localhost",
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/$1",
"^@components/(.*)$": "<rootDir>/app/javascript/components/$1",
"^@mixins/(.*)$": "<rootDir>/app/javascript/mixins/$1",
"^@modules/(.*)$": "<rootDir>/app/javascript/modules/$1",
"^@plugins/(.*)$": "<rootDir>/app/javascript/plugins/$1",
"^@stylesheets/(.*)$": "<rootDir>/app/assets/stylesheets/$1",
"^@locales/(.*)$": "<rootDir>/app/javascript/locales/$1"
},
"transform": {
".*\\.(vue)$": "vue-jest",
".+\\.js$": "babel-jest"
},
"transformIgnorePatterns": [],
"collectCoverage": true,
"collectCoverageFrom": [
"app/javascript/**/*.{js,vue}",
"!app/javascript/docs/**",
"!**/node_modules/**"
],
"setupFilesAfterEnv": [
"<rootDir>/app/assets/javascripts/utils.js",
"<rootDir>/app/javascript/tests/jest-utils.js"
]
}
}