-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "study_buddies",
"private": true,
"dependencies": {
"@babel/preset-react": "^7.8.3",
"@rails/actioncable": "^6.0.0",
"@rails/activestorage": "^6.0.0",
"@rails/ujs": "^6.0.0",
"@rails/webpacker": "4.2.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"bootstrap": "^4.4.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16.1": "^1.6.2",
"jest": "^25.1.0",
"jest-fetch-mock": "^3.0.1",
"jest-mock-promise": "^1.1.10",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-bootstrap": "^1.0.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"react-test-renderer": "^16.13.0",
"react_ujs": "^2.6.1",
"turbolinks": "^5.2.0"
},
"version": "0.1.0",
"devDependencies": {
"@testing-library/react": "^9.4.0",
"enzyme-adapter-react-16": "^1.15.2",
"webpack-dev-server": "^3.10.1"
},
"jest": {
"roots": [
"app/javascript/tests"
],
"moduleDirectories": [
"node_modules",
"app/javascript"
],
"setupFiles": [
"./setupJest.js"
],
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "<rootDir>/config/CSSStub.js"
}
}
}