forked from houndci/hound
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 3.2 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "houndci",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest app/javascript/__tests__/*-test.jsx",
"test:watch": "jest --watch app/javascript/__tests__/*-test.jsx",
"test:coverage": "jest --coverage app/javascript/__tests__/*-test.jsx"
},
"engines": {
"node": "7.4",
"yarn": "0.27.5"
},
"dependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.25.0",
"babel-loader": "7.x",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"babel-preset-stage-2": "^6.5.0",
"babel-runtime": "^6.6.1",
"classnames": "^2.2.5",
"coffee-loader": "^0.7.3",
"coffee-script": "^1.12.7",
"compression-webpack-plugin": "^1.0.0",
"css-loader": "^0.28.4",
"es5-shim": "^4.5.2",
"es6-promise": "^3.1.2",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"glob": "^7.1.2",
"imports-loader": "^0.6.5",
"jquery": "^3.1.1",
"jquery-ujs": "^1.2.2",
"js-yaml": "^3.9.0",
"loader-utils": "^0.2.12",
"lodash": "^4.17.4",
"node-sass": "^4.5.3",
"object-assign-shim": "^1.0.0",
"path-complete-extname": "^0.1.0",
"postcss-loader": "^2.0.6",
"postcss-smart-import": "^0.7.5",
"precss": "^2.0.0",
"prop-types": "^15.5.10",
"rails-erb-loader": "^5.1.0",
"react": "^15.6.1",
"react-addons-update": "^15.6.0",
"react-dom": "^15.6.1",
"resolve-url-loader": "^2.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.5.7",
"webpack": "^3.4.1",
"webpack-manifest-plugin": "^1.2.1",
"webpack-merge": "^4.1.0",
"webpacker-react": "^0.3.0"
},
"devDependencies": {
"babel-eslint": "^7.1.0",
"babel-jest": "^20.0.3",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.4.4",
"eslint": "^3.10.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^17.0.3",
"jest-enzyme": "^2.0.0",
"react-test-renderer": "^15.6.1",
"react-transform-hmr": "^1.0.2",
"sinon": "^1.17.6",
"webpack-dev-server": "^2.6.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/houndci/hound.git"
},
"jest": {
"moduleNameMapper": {
"^.+\\.(css|scss)$": "identity-obj-proxy"
},
"setupFiles": [
"./app/javascript/__tests__/jestsetup.js"
],
"setupTestFrameworkScriptFile": "node_modules/jest-enzyme/lib/index.js",
"unmockedModulePathPatterns": [
"react",
"enzyme",
"jasmine-enzyme"
],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
]
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
]
}
}