-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
73 lines (73 loc) · 1.59 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
{
"name": "vuejs-rails-starterkit",
"private": true,
"engines": {
"node": ">= 12.x"
},
"scripts": {
"test": "jest"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"roots": [
"test/javascript"
],
"moduleDirectories": [
"node_modules",
"app/javascript"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/app/javascript/$1"
},
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".+\\.js$": "babel-jest",
".+\\.vue$": "vue-jest"
},
"testPathIgnorePatterns": [
"<rootDir>/config/webpack/"
],
"snapshotSerializers": [
"jest-serializer-vue"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,vue}",
"!**/node_modules/**",
"!**/config/**",
"!**/vendor/**"
]
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"@rails/activestorage": "^6.0.0",
"@rails/ujs": "^6.0.0",
"@rails/webpacker": "5.2.1",
"admin-lte": "^3.1.0",
"bootstrap": "^4.6.0",
"jquery": "^3.6.0",
"popover": "^2.4.1",
"turbolinks": "^5.2.0",
"vue": "^2.6.12",
"vue-loader": "^15.9.6",
"vue-template-compiler": "^2.6.12",
"vue-turbolinks": "^2.2.1"
},
"version": "0.1.0",
"devDependencies": {
"@vue/test-utils": "^1.1.4",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"eslint": "^7.24.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"jest-serializer-vue": "^2.0.2",
"vue-jest": "^3.0.7",
"webpack-dev-server": "^3.11.2"
}
}