-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.33 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
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "A React Redux Router complete boilerplate",
"main": "index.js",
"scripts": {
"start": "npm run clean && webpack-dev-server --history-api-fallback --env=local --no-info --open",
"clean": "rm -rf dist/",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"test": "jest",
"test:watch": "jest --watch"
},
"jest": {
"verbose": true,
"testRegex": "(/__tests__/.*|(\\.|/)(test))\\.jsx?$",
"testPathIgnorePatterns": [
"/node_modules/",
"/bin/"
],
"automock": false,
"collectCoverage": true,
"coverageDirectory": "./coverage",
"coverageReporters": [
"json",
"text",
"html"
],
"transformIgnorePatterns": [
"node_modules/(?!react)"
],
"moduleNameMapper": {
"\\.(scss|sass|css)$": "identity-obj-proxy"
}
},
"author": "Nicola Ferracin",
"license": "ISC",
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"react-router": "^3.0.2",
"react-router-dom": "^4.1.2",
"react-router-redux": "^4.0.8",
"redux": "^3.7.2"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"css-loader": "^0.28.4",
"enzyme": "^2.9.1",
"eslint": "^4.4.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jasmine": "^2.8.4",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"history": "^4.6.3",
"html-webpack-plugin": "^2.30.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^20.0.4",
"node-sass": "^4.5.3",
"path": "^0.12.7",
"react-redux": "^5.0.6",
"react-router-redux": "^4.0.8",
"react-test-renderer": "^15.6.1",
"redux-mock-store": "^1.2.3",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.4.1",
"webpack-browser-plugin": "^1.0.20",
"webpack-dev-server": "^2.6.1",
"write-file-webpack-plugin": "^4.1.0"
}
}