-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.4 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.4 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
{
"name": "Bottleneck",
"private": true,
"dependencies": {
"@babel/preset-react": "^7.0.0",
"@rails/actioncable": "^6.0.0-alpha",
"@rails/activestorage": "^6.0.0-alpha",
"@rails/ujs": "^6.0.0-alpha",
"@rails/webpacker": "^4.0.7",
"@reach/router": "^1.2.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"classnames": "^2.2.6",
"dotenv": "^8.2.0",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-currency-format": "^1.0.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"react-slick": "^0.25.2",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"slick-carousel": "^1.8.1",
"turbolinks": "^5.2.0"
},
"version": "0.1.0",
"devDependencies": {
"@testing-library/react": "^9.3.0",
"enzyme": "^3.10.0",
"jest": "^24.9.0",
"jest-css-modules": "^2.1.0",
"jest-dom": "^4.0.0",
"jest-fetch-mock": "^2.1.2",
"redux-mock-store": "^1.5.3",
"webpack-dev-server": "^3.8.0"
},
"scripts": {
"test": "jest"
},
"jest": {
"moduleNameMapper": {
"\\.(s?css)$": "<rootDir>/node_modules/jest-css-modules",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/app/javascript/components/__mocks__/svgMocks.js"
},
"moduleDirectories": [
"node_modules"
],
"automock": false,
"setupFiles": [
"./setupJest.js"
]
}
}