-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
140 lines (140 loc) · 4.44 KB
/
package.json
File metadata and controls
140 lines (140 loc) · 4.44 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "smart_testing_react",
"version": "2.0.0",
"description": "Brolopers smart testing react with jest and enzyme",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jest --watch --silent=true --colors",
"coverage": "./node_modules/.bin/jest --coverage --silent=true --colors",
"start": "node scripts/start.js",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier-standard --trailing-comma es5 --single-quote --write",
"git add"
],
"*.jsx": [
"prettier-standard --trailing-comma es5 --single-quote --write",
"git add"
],
"*.css": [
"./node_modules/.bin/stylefmt",
"git add"
]
},
"jest": {
"moduleNameMapper": {
"\\.(css)$": "<rootDir>/node_modules/jest-css-modules",
"collectCoverage": true,
"coverageFormats": [
"json",
"html"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/fsdevlondon/smart_testing_react.git"
},
"author": "fsdevlondon",
"license": "ISC",
"bugs": {
"url": "https://github.com/fsdevlondon/smart_testing_react/issues"
},
"homepage": "https://github.com/fsdevlondon/smart_testing_react#readme",
"dependencies": {
"material-ui": "^0.17.4",
"object-assign": "^4.1.1",
"promise": "^7.1.1",
"prop-types": "^15.5.8",
"react": "^15.4.1",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.4.1",
"react-intl": "^2.2.3",
"react-redux": "^5.0.4",
"react-router": "2.8.1",
"redux": "^3.6.0",
"whatwg-fetch": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.0.20",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.8",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-typecheck": "^3.9.0",
"babel-polyfill": "^6.20.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"babel-register": "^6.18.0",
"case-sensitive-paths-webpack-plugin": "^2.0.0",
"chalk": "^1.1.3",
"compression-webpack-plugin": "^0.4.0",
"connect-history-api-fallback": "^1.3.0",
"css-loader": "^0.28.0",
"detect-port": "^1.1.1",
"dotenv": "^4.0.0",
"enzyme": "^2.8.2",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-babel": "^6.0.0",
"eslint-config-prettier": "^1.6.0",
"eslint-config-standard": "^10.2.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^19.0.1",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^3.0.1",
"eslint-watch": "^3.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"fs-extra": "^2.1.2",
"html-webpack-plugin": "^2.28.0",
"http-proxy-middleware": "^0.17.4",
"husky": "^0.13.3",
"ignore-styles": "^5.0.1",
"image-webpack-loader": "^3.3.0",
"inquirer": "^2.0.0",
"jest": "^19.0.2",
"jest-css-modules": "^1.1.0",
"lint-staged": "^3.4.0",
"postcss-loader": "^1.3.3",
"prettier": "^0.22.0",
"prettier-standard": "^3.0.1",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^15.5.1",
"react-dev-utils-academy": "https://github.com/reactjs-academy/react-dev-utils-academy.git",
"react-hot-loader": "^3.0.0-beta.6",
"react-tap-event-plugin": "^2.0.1",
"react-test-renderer": "^15.5.4",
"redux-logger": "^2.6.1",
"redux-mock-store": "^1.2.3",
"standard": "^10.0.1",
"stats-webpack-plugin": "^0.6.0",
"style-loader": "^0.16.1",
"stylefmt": "^5.3.2",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"url-loader": "^0.5.8",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2",
"webpack-manifest-plugin": "^1.1.0"
}
}