-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
74 lines (74 loc) · 1.73 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
{
"name": "app",
"private": true,
"dependencies": {
"@babel/core": "7",
"@babel/plugin-transform-runtime": "7",
"@babel/preset-env": "7",
"@babel/runtime": "7",
"@rails/actioncable": "7.1.1",
"@rails/actiontext": "7.1.1",
"@rails/activestorage": "7.1.1",
"@rails/ujs": "7.1.1",
"@yaireo/tagify": "4.9.8",
"babel-loader": "8",
"braces": "^3.0.3",
"compression-webpack-plugin": "9",
"core-js": "^3.9.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"html-template-tag": "^4.0.1",
"imports-loader": "1.2.0",
"jquery": "^3.5.1",
"jquery-mask-plugin": "^1.14.16",
"jquery-ui": "^1.13.2",
"mini-css-extract-plugin": "^2.7.6",
"prop-types": "^15.7.2",
"regenerator-runtime": "^0.13.7",
"shakapacker": "7.2.3",
"stickybits": "^3.7.9",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "5",
"trix": "^2.1.9",
"turbolinks": "^5.2.0",
"webpack": "5",
"webpack-assets-manifest": "5",
"webpack-cli": "5",
"webpack-merge": "5"
},
"babel": {
"presets": [
"./node_modules/shakapacker/package/babel/preset.js"
]
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@percy/cli": "^1.0.0-beta.61",
"expose-loader": "^2.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^12.0.0",
"webpack-dev-server": "^5.0.0"
},
"engines": {
"node": ">=12.16 <21.0.0"
},
"scripts": {
"test": "jest"
},
"jest": {
"testEnvironment": "jsdom",
"roots": [
"spec/javascript"
],
"moduleDirectories": [
"node_modules",
"app/javascript"
],
"setupFiles": [
"./spec/javascript/setup-jest.js"
]
}
}