-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.38 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
{
"name": "rrrr",
"version": "0.1.5",
"description": "React Redux Router Wrapper for easily composing React components attached to react-router and react-redux, without repeated / confusing boilerplate",
"main": "build/index.js",
"scripts": {
"build": "BABEL_ENV=production NODE_ENV=production babel --source-maps inline --out-dir ./build/ ./src/",
"dev": "nodemon -L --require babel-register --watch ./config/ --watch ./src/ --watch ./test/ --exec 'npm run lint:dev && npm run test'",
"lint": "eslint ./config/ ./src/ ./test/",
"lint:dev": "eslint -c .eslintrc.dev.json ./config/ ./src/ ./test/",
"test": "_mocha --recursive -s 0 -b -r should -r babel-register -r babel-polyfill -r ./test/setup.js --timeout 10000 ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwjft/rrrr.git"
},
"keywords": [
"react",
"react-router",
"react-redux"
],
"author": "Danny Tracey",
"license": "MIT",
"bugs": {
"url": "https://github.com/dwjft/rrrr/issues"
},
"homepage": "https://github.com/dwjft/rrrr#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx-source": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"easy-import": "^0.3.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"history": "^4.7.2",
"mocha": "^5.0.1",
"nodemon": "^1.15.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"should": "^13.2.1",
"warning": "^3.0.0"
},
"devDependencies": {
"babel-jest": "^22.4.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"jest": "^22.4.2",
"react-test-renderer": "^16.2.0"
}
}