-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.12 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
{
"name": "myaccount",
"private": true,
"engines": {
"node": ">=16"
},
"dependencies": {
"@babel/core": "7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-private-methods": "7.18.6",
"@babel/plugin-transform-runtime": "7",
"@babel/preset-env": "7",
"@babel/runtime": "7",
"@fortawesome/fontawesome-free": "^5.11.2",
"@rails/actioncable": "^6.0.0",
"@rails/activestorage": "^6.0.0",
"@rails/ujs": "^6.0.0",
"@types/babel__core": "7",
"@types/webpack": "5",
"babel-loader": "8",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^3.1.0",
"bootstrap": "^4.3.1",
"compression-webpack-plugin": "9",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"jquery": "1.9.1 - 3",
"mini-css-extract-plugin": "^2.7.6",
"popper.js": "^1.14.7",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"shakapacker": "7.1.0",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "5",
"typeface-open-sans": "^0.0.75",
"typeface-roboto-slab": "^1.1.4",
"webpack": "5",
"webpack-assets-manifest": "5",
"webpack-cli": "4",
"webpack-merge": "5",
"webpack-sources": "^3.2.3"
},
"version": "0.1.0",
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"babel-jest": "^26.0.1",
"eslint": "^7.2.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.0.1",
"webpack-dev-server": "4"
},
"babel": {
"presets": [
"./node_modules/shakapacker/package/babel/preset.js"
]
},
"scripts": {
"test": "jest",
"lint": "yarn run eslint --ext .js app/javascript spec/javascript"
},
"jest": {
"roots": [
"spec/javascript"
],
"moduleDirectories": [
"node_modules",
"app/javascript"
],
"collectCoverage": true,
"coverageReporters": [
"lcov"
]
}
}