-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.29 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
{
"name": "QuizMaster",
"private": true,
"dependencies": {
"@rails/webpacker": "3.5",
"axios": "^0.18.0",
"babel-preset-react": "^6.24.1",
"bootstrap": "^4.1.3",
"jquery": "^3.3.1",
"popper.js": "^1.14.4",
"prop-types": "^15.6.2",
"rails-ujs": "^5.2.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-markdown": "^3.4.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.4.1",
"enzyme-adapter-react-16": "^1.2.0",
"jest": "^23.5.0",
"jest-enzyme": "^6.0.3",
"jest-junit": "^5.1.0",
"jsdom": "^11.12.0",
"react-test-renderer": "^16.4.2",
"webpack-dev-server": "2.11.2"
},
"scripts": {
"test": "jest"
},
"jest": {
"roots": [
"<rootDir>/spec/javascript/",
"<rootDir>/app/javascript"
],
"moduleDirectories": [
"<rootDir>/node_modules",
"<rootDir>/app/javascript"
],
"testMatch": [
"<rootDir>/spec/javascript/**/*.spec.jsx"
],
"unmockedModulePathPatterns": [
"node_modules/react"
],
"setupFiles": [
"<rootDir>/spec/javascript/enzyme.setup.js"
]
}
}