-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (56 loc) · 1.72 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
{
"name": "svg-tree",
"version": "1.0.0",
"description": "React project that uses recursive svg components to display a (family) data tree",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"image-webpack-loader": "^3.3.1",
"jest": "^20.0.4",
"react-test-renderer": "^15.6.1",
"webpack-dev-server": "^2.5.1"
},
"dependencies": {
"enzyme": "^2.9.1",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-hot-loader": "3.0.0-beta.6",
"styled-components": "^2.1.1",
"webpack": "^3.2.0"
},
"jest": {
"setupFiles": [
"./config/jestsetup.js"
],
"moduleDirectories": ["src", "src/components", "src/lib", "node_modules"],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
],
"testRegex": "tests/.*\\.test\\.js$",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/__mocks__/fileMock.js"
}
}
}