-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.48 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.48 KB
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
{
"engines": {
"node": "9.x",
"yarn": "1.x"
},
"scripts": {
"test": "jest"
},
"dependencies": {
"@rails/webpacker": "^3.3.1",
"axios": "^0.18.0",
"britecharts": "^2.9.6",
"chart.js": "^2.7.2",
"d3": "^5.7.0",
"d3-selection": "^1.3.2",
"file-loader": "4",
"leaflet-easybutton": "^2.4.0",
"leaflet-svg-shape-markers": "^1.3.0",
"pluralize": "^8.0.0",
"simple-statistics": "^7.3.0",
"spin.js": "^4.0.0",
"venn.js": "^0.2.20",
"vue": "^2.5.16",
"vue-autosuggest": "^2.2.0",
"vue-good-table": "^2.18.0",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.5.16",
"vue-typeahead": "^2.3.2",
"vue2-autocomplete-js": "^0.2.2",
"wkx": "^0.5.0"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.13",
"babel-jest": "^22.4.3",
"jest": "^23.6.0",
"jest-serializer-vue": "^1.0.0",
"vue-jest": "^2.3.0",
"webpack-dev-server": "^2.11.5"
},
"jest": {
"roots": [
"spec/javascript"
],
"moduleDirectories": [
"node_modules",
"app/javascript"
],
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"moduleNameMapper": {
"^.+\\.(css|less|scss)$": "<rootDir>/config/webpack/css_stub.js"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
]
}
}