-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 3.08 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "home_server",
"private": true,
"scripts": {
"test": "NODE_ENV=test jest --no-cache",
"lint": "eslint --fix . && stylelint --fix \"**/*.scss\""
},
"dependencies": {
"@babel/core": "^7.20.0",
"@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-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-modules-commonjs": "^7.20.0",
"@babel/plugin-transform-runtime": "^7.19.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@hotwired/stimulus": "3.2.2",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@hotwired/turbo-rails": "^7.2.0",
"babel-loader": "^8.2.0",
"babel-plugin-macros": "^3.1.0",
"carbon-now-cli": "1.4.0",
"compression-webpack-plugin": "^9.2.0",
"core-js": "^3.27.0",
"css-loader": "^6.7.0",
"css-minimizer-webpack-plugin": "^4.2.0",
"file-loader": "^6.2.0",
"js-cookie": "3.0.1",
"justified-layout": "4.1.0",
"mini-css-extract-plugin": "^2.7.0",
"postcss": "^8.4.0",
"rails-erb-loader": "5.5.2",
"resolve-url-loader": "5.0.0",
"sass": "1.57.1",
"sass-loader": "10.4.1",
"shakapacker": "6.6.0",
"simplelightbox": "2.11.0",
"style-loader": "^3.3.0",
"terser-webpack-plugin": "^5.3.0",
"typed.js": "2.0.12",
"webpack": "^5.94",
"webpack-assets-manifest": "^5.1.0",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^4.11.0",
"webpack-merge": "^5.0.0"
},
"version": "1.0.0",
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@testing-library/dom": "^8.19.1",
"babel-plugin-dynamic-import-node": "^2.3.3",
"eslint": "^8.31.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.0",
"eslint-plugin-standard": "^5.0.0",
"html-loader-jest": "^0.2.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-erb-transformer": "^1.2.10",
"stylelint": "^15.10.1",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-standard": "^29.0.0"
},
"jest": {
"testRegex": ".*_spec.js",
"roots": [
"<rootDir>",
"<rootDir>/spec/javascript"
],
"moduleFileExtensions": [
"js",
"js.erb",
"erb"
],
"moduleDirectories": [
"node_modules",
"<rootDir>/app/frontend/packs"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/spec/javascript/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/spec/javascript/__mocks__/styleMock.js"
},
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.erb$": [
"jest-erb-transformer",
{
"application": "rails",
"timeout": 20000,
"babelConfig": true
}
]
}
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}