-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
79 lines (79 loc) · 1.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
{
"dependencies": {
"@rails/webpacker": "^5",
"acorn": "^6.4.1",
"axios": "^0.28.0",
"braces": "^3.0.3",
"browserslist": "^4.16.5",
"color-string": "^1.9.1",
"core-js": "2",
"css-loader": "^1.0.0",
"formdata-polyfill": "^3.0.11",
"glob-parent": "^6.0.2",
"is-svg": "^4.3.2",
"kind-of": "^6.0.3",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"postcss": "^8.4.31",
"postcss-cssnext": "^3.1.0",
"ssri": "^7.1.1",
"tar": "^6.2.1",
"trim-newlines": "^4.0.1",
"vue": "^2.6.10",
"vue-axios": "^2.1.1",
"vue-loader": "^15.7.0",
"vue-quill-editor": "^3.0.6",
"vue-template-compiler": "^2.6.10",
"vue-turbolinks": "^2.0.3",
"webpack-cli": "^3.3.2",
"ws": "^7.5.10",
"yargs-parser": "^21.0.1"
},
"scripts": {
"test": "jest"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.20",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"fstream": "^1.0.12",
"jest": "^26",
"jest-junit": "^15.0.0",
"jest-junit-reporter": "^1.1.0",
"jest-serializer-vue": "^2.0.2",
"source-map-support": "^0.5.6",
"vue-jest": "^2.6.0",
"vue-test-utils": "^1.0.0-beta.11",
"webpack-dev-server": "3.11.2"
},
"jest": {
"roots": [
"app/javascript/test"
],
"testResultsProcessor": "./node_modules/jest-junit-reporter",
"verbose": true,
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"moduleDirectories": [
"node_modules",
"app/javascript"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/$1",
".*\\.css$": "<rootDir>/app/javascript/test/dummy.js"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
],
"setupFiles": [
"<rootDir>/app/javascript/test/setupFile.js"
]
}
}