forked from sapientglobalmarkets/react-redux-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.56 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.56 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
{
"name": "react-redux-seed",
"version": "1.0.0",
"description": "Seed project for React apps using Redux",
"repository": {
"type": "git",
"url": "https://github.com/sapientglobalmarkets/react-redux-seed.git"
},
"author": "Naresh Bhatia <naresh.archfirst@gmail.com> (http://archfirst.org)",
"license": "MIT",
"homepage": "https://github.com/sapientglobalmarkets/react-redux-seed",
"scripts": {
"start": "webpack-dev-server --env dev",
"build": "del dist; webpack -p --env prod",
"test": "karma start",
"test:watch": "npm test -- --no-single-run --auto-watch",
"lint": "eslint src --ext .js,.jsx",
"gen": "plop --plopfile generators/plopfile.js"
},
"dependencies": {
"babel-polyfill": "^6.16.0",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^4.4.6",
"react-router": "^3.0.0",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"reselect": "^2.5.3",
"sanitize.css": "^4.1.0",
"whatwg-fetch": "^2.0.0"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-__coverage__": "^11.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015-webpack": "^6.4.3",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"chai": "^3.5.0",
"css-loader": "^0.25.0",
"del-cli": "^0.2.0",
"enzyme": "^2.6.0",
"eslint": "^3.10.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-react": "^6.7.1",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"inquirer-directory": "^2.1.0",
"json-loader": "^0.5.4",
"karma": "^1.2.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-es6-shim": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^3.1.2",
"phantomjs-prebuilt": "^2.1.13",
"plop": "^1.6.0",
"postcss-cssnext": "^2.7.0",
"postcss-focus": "^1.0.0",
"postcss-loader": "^1.1.1",
"postcss-reporter": "^2.0.0",
"precss": "^1.4.0",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^15.3.1",
"react-hot-loader": "^3.0.0-beta.6",
"sinon": "^1.17.5",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "2.1.0-beta.21",
"webpack-dev-server": "2.1.0-beta.10",
"webpack-merge": "^0.15.0"
},
"seedConfig": {
"port": 3000
}
}