-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.26 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
{
"name": "@kiosked/react-redux-boilerplate",
"version": "0.0.0",
"description": "Full React/Redux/React-Router/Actions+Selectors boilerplate application, with Webpack",
"main": "source/index.js",
"scripts": {
"build": "NODE_ENV=production webpack --mode=production --progress",
"serve": "serve -p 3000 ./dist",
"dev": "webpack --mode=development --progress --watch",
"test": "jest",
"test:update": "jest --updateSnapshot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kiosked/react-redux-boilerplate.git"
},
"jest": {
"moduleDirectories": [
"node_modules",
"source"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/.history/"
]
},
"keywords": [
"react",
"redux",
"webpack",
"boilerplate"
],
"author": "Perry Mitchell <perry@kiosked.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kiosked/react-redux-boilerplate/issues"
},
"homepage": "https://github.com/Kiosked/react-redux-boilerplate#readme",
"private": true,
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-jsx-control-statements": "^3.2.8",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"history": "^4.7.2",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.3",
"node-sass": "^4.8.3",
"prop-types": "^15.6.1",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-redux": "^5.0.0-alpha.9",
"react-test-renderer": "^16.3.1",
"redux": "^3.7.2",
"redux-actions": "^2.3.0",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"styled-components": "^3.2.5",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14"
},
"dependencies": {}
}