This repository was archived by the owner on Jun 18, 2025. It is now read-only.
forked from emrojo/samples_extraction
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.94 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.94 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
65
66
67
68
69
{
"dependencies": {
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.26.3",
"@rails/webpacker": "^5.4.4",
"ajv": "^6.4.0",
"babel-loader": "^8.4.1",
"classnames": "^2.5.1",
"eslint": "^4.19.1",
"fine-uploader": "^5.16.2",
"fine-uploader-wrappers": "^1.0.1",
"jquery": "^3.7.1",
"moment": "^2.30.1",
"node": "^10.24.1",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-fine-uploader": "^1.1.0",
"react-format-text": "^1.1.1",
"react-inlinesvg": "^0.8.1",
"react-moment": "^0.9.7",
"react-rails-form-helpers": "^0.1.0-beta.13",
"react-spinkit": "^3.0.0",
"react-split-pane": "^0.1.92",
"react-toggle": "^4.1.3",
"react-tooltip": "^3.11.6",
"react-transition-group": "^1.2.1",
"react_ujs": "^2.7.1",
"turbolinks": "^5.1.1",
"upath": "^1.0.5",
"webpacker-react": "^0.3.2"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.4",
"@prettier/plugin-ruby": "^2.1.0",
"babel-jest": "^24.9.0",
"babel-plugin-react-transform": "^3.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.8",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-enzyme": "^7.1.2",
"miragejs": "^0.1.48",
"postcss-preset-env": "^6.7.2",
"prettier": "^3.2.5",
"regenerator-runtime": "^0.13.11"
},
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand"
},
"jest": {
"roots": [
"test/javascript",
"test/javascript/components"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
},
"moduleDirectories": [
"node_modules",
"app/javascript/packs",
"app/javascript/components"
]
}
}