-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
141 lines (141 loc) · 4.28 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
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
141
{
"name": "react-redux-boilerplate",
"version": "0.9.56",
"description": "React Redux Boilerplate is a workflow boilerplate that make life easier for developers by providing a virtual development environment and production ready build process framework out of the box.",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dashboard -p 3300 -c red -t dashboard -- node bin/commands.js dev",
"start": "npm run dev",
"build": "cross-env NODE_ENV=production node bin/commands.js build",
"build:release": "cross-env NODE_ENV=release node bin/commands.js build",
"clean": "rimraf docroot",
"test": "jest --no-cache",
"lint": "node bin/commands.js lint"
},
"repository": {
"type": "git",
"url": "https://github.com/iroy2000/react-redux-boilerplate.git"
},
"homepage": "https://github.com/iroy2000/react-redux-boilerplate",
"author": "Roy Yu <[email protected]>",
"license": "MIT",
"engines": {
"npm": ">=3.10.7",
"node": ">=6.9.0"
},
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.1.0",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-typecheck": "^3.9.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"browser-sync": "^2.24.7",
"browser-sync-webpack-plugin": "^1.2.0",
"case-sensitive-paths-webpack-plugin": "^2.1.1",
"colors": "^1.1.2",
"concurrently": "^3.5.1",
"config": "^1.29.2",
"cross-env": "^5.1.3",
"css-loader": "^0.28.9",
"debug": "^3.1.0",
"dotenv": "^4.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.15.0-rc.13",
"identity-obj-proxy": "^3.0.0",
"image-webpack-loader": "^4.3.1",
"jest-cli": "^23.6.0",
"postcss-cssnext": "^3.0.2",
"postcss-loader": "^2.0.10",
"precss": "^2.0.0",
"raf": "^3.4.0",
"react-hot-loader": "^3.1.3",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.2",
"shelljs": "^0.8.0",
"style-loader": "^0.19.1",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.2",
"webpack-dashboard": "^2.0.0",
"webpack-dev-server": "^2.11.0",
"webpack-s3-plugin": "^1.0.2"
},
"dependencies": {
"gps-to-gpx": "^1.4.0",
"history": "^4.7.2",
"immutable": "^3.8.2",
"papaparse": "^4.3.7",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-helmet": "^5.2.0",
"react-loadable": "^5.3.1",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1"
},
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"<rootDir>/__tests__/setup/",
"<rootDir>/node_modules/"
],
"setupTestFrameworkScriptFile": "<rootDir>/__tests__/setup/jestTestSetup.js",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css)$": "identity-obj-proxy"
},
"setupFiles": [
"raf/polyfill"
],
"automock": false,
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(js|jsx|json)$",
"moduleFileExtensions": [
"js",
"json",
"jsx"
]
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"keywords": [
"react",
"redux",
"webpack",
"webpack-dev-server",
"postcss",
"jest",
"boilerplate",
"hmr"
]
}