generated from firstmoversadvantage/fma-ruby-on-rails-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
86 lines (86 loc) · 2.49 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
{
"dependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-destructuring": "^7.24.7",
"@babel/plugin-transform-private-methods": "7.24.7",
"@babel/plugin-transform-regenerator": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@fortawesome/fontawesome-free": "^6.2.1",
"@googlemaps/markerclusterer": "^2.5.3",
"@rails/actioncable": "^6.1.7",
"@rails/activestorage": "^6.1.7",
"@rails/ujs": "^6.1.7",
"@rails/webpacker": "5.4.4",
"@solana/web3.js": "^1.63.2",
"@vue/composition-api": "^1.7.1",
"actioncable-vue": "^2.5.1",
"axios": "^1.7.4",
"babel-loader": "^8.3.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"bootstrap-vue": "^2.21.2",
"chart.js": "^3.9.1",
"chartjs-adapter-luxon": "1.2.1",
"loadash": "^1.0.0",
"luxon": "^2.5.2",
"millify": "^5.0.1",
"moment": "^2.29.4",
"turbolinks": "^5.2.0",
"vue": "^2.6.14",
"vue-loader": "^15.9.8",
"vue-pagination-2": "^3.0.91",
"vue-template-compiler": "^2.6.14",
"vue-turbolinks": "^2.2.2",
"vue-websocket": "^0.2.3",
"vuex": "^3.6.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@vue/babel-preset-app": "^4.5.13",
"@vue/test-utils": "^1.2.2",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^29.7.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-vue": "^2.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.1",
"vue-jest": "^3.0.7",
"webpack-dev-server": "^4.15.2"
},
"scripts": {
"type": "module",
"test": "jest"
},
"jest": {
"roots": [
"test/javascript"
],
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "vue-jest",
"^.+\\.ts?$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!@ngrx|(?!deck.gl)|ng-dynamic)"
],
"testEnvironment": "jsdom"
},
"browserslist": [
"defaults",
"IE 11"
]
}