-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.81 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.81 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
{
"name": "react-post-css-modules",
"version": "1.0.0",
"description": "A boilerplate for react 16, post-css, hot-loader and css-modules",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config webpack.config.js",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/pouria-bashar/react-post-css-modules"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack",
"post-css",
"css-modules",
"jest"
],
"author": "Pouria Bashardoust <pouria.bashardoust@gmail.com> (http://github.com/pouria-bashar)",
"license": "ISC",
"jest": {
"setupFiles": [
"raf/polyfill",
"./setupTests.js"
],
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
}
},
"devDependencies": {
"autoprefixer": "7.1.6",
"babel-core": "6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "7.1.2",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"css-loader": "0.28.7",
"enzyme": "3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"enzyme-to-json": "^3.2.2",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-xo-react": "^0.14.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"identity-obj-proxy": "^3.0.0",
"jest": "21.2.1",
"postcss-loader": "2.0.8",
"precss": "2.0.0",
"raf": "^3.4.0",
"react": "16.1.0",
"react-dom": "16.1.0",
"react-test-renderer": "16.1.0",
"style-loader": "0.19.0",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.4",
"react-hot-loader": "3.1.2"
}
}