-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
{
"name": "subvoc",
"version": "1.0.0",
"devDependencies": {
"autoprefixer": "^6.7.7",
"axios": "0.16.1",
"babel-jest": "^19.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"classnames": "^2.2.5",
"enzyme": "2.8.2",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.19.0",
"history": "4.6.1",
"jest": "19.0.2",
"jest-enzyme": "3.0.1",
"postcss-cli": "^3.1.1",
"prop-types": "15.5.8",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-slick": "^0.14.8",
"react-test-renderer": "15.5.4",
"redux": "^3.6.0",
"react-redux": "5.0.4",
"redux-saga": "0.14.6",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-watch": "3.2.2",
"testdouble": "^2.1.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"es6"
],
"roots": [
"static/js/app"
],
"setupFiles": [
"./static/js/app/test-setup.es6"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testMatch": [
"**/*.spec.es6"
],
"transform": {
"^.+\\.es6": "babel-jest"
},
"verbose": true
}
}