-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
94 lines (94 loc) · 2.79 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
{
"name": "redux-module-builder",
"version": "0.3.2",
"description": "Redux modules",
"author": "Fullstack.io <[email protected]>",
"license": "MIT",
"options": {
"mocha": "--require scripts/mocha_runner -t rewireify src/**/__tests__/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fullstackreact/redux-modules.git"
},
"main": "dist/index.js",
"scripts": {
"prepublish": ". ./scripts/prepublish.sh",
"dev": "NODE_ENV=development ./node_modules/hjs-webpack/bin/hjs-dev-server.js",
"build": "NODE_ENV=production webpack",
"publish_pages": "gh-pages -d public/",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testonly": "NODE_ENV=test mocha $npm_package_options_mocha",
"test": "npm run lint && npm run testonly",
"test:watch": "npm run testonly -- --watch --watch-extensions js"
},
"devDependencies": {
"autoprefixer": "^6.3.7",
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-es2015-modules-umd": "^6.8.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-2": "^6.11.0",
"babel-runtime": "^6.9.2",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"css-loader": "^0.23.1",
"cssnano": "^3.7.3",
"dotenv": "^2.0.0",
"enzyme": "^2.4.1",
"eslint": "^3.1.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-react": "^5.2.2",
"fetch-mock": "^5.0.3",
"file-loader": "^0.9.0",
"gh-pages": "^0.11.0",
"highlight.js": "^9.5.0",
"hjs-webpack": "^8.3.0",
"html-loader": "^0.4.3",
"install": "^0.8.1",
"invariant": "^2.2.1",
"jsdom": "^9.4.1",
"markdown-loader": "^0.1.7",
"markdown-with-front-matter-loader": "^0.1.0",
"marked": "^0.3.5",
"mocha": "^2.5.3",
"mockery": "^1.7.0",
"nodemon": "^1.9.2",
"npm": "^3.10.5",
"npm-font-open-sans": "0.0.3",
"postcss-loader": "^0.9.1",
"precss": "^1.4.0",
"raw-loader": "^0.5.1",
"react": "^15.2.1",
"react-addons-test-utils": "^15.2.1",
"react-dom": "^15.2.1",
"react-github-fork-ribbon": "^0.4.4",
"react-router": "^2.6.0",
"redux-mock-store": "^1.1.2",
"redux-thunk": "^2.1.0",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1"
},
"peerDependencies": {
"react": "~0.14.8 || ^15.0.0"
},
"dependencies": {
"invariant": "^2.2.1",
"query-string": "^4.2.2",
"react-github-fork-ribbon": "^0.4.4",
"react-inspector": "^1.1.0",
"redux": "^3.5.2",
"redux-actions": "^0.10.1",
"whatwg-fetch": "^1.0.0"
}
}