forked from gaearon/react-hot-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.86 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": "react-hot-loader",
"version": "3.0.0-beta.7",
"description": "Tweak React components in real time.",
"main": "index.js",
"files": [
"lib",
"babel.js",
"patch.js",
"webpack.js"
],
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"test": "jest",
"test:watch": "yarn test -- --watch",
"lint": "eslint .",
"prepublish": "yarn clean && yarn build",
"format": "prettier --write \"{test,src}/**/*.js\" *.js"
},
"dependencies": {
"babel-template": "^6.7.0",
"global": "^4.3.0",
"react-deep-force-update": "^2.0.1",
"react-proxy": "^3.0.0-alpha.0",
"redbox-react": "^1.3.6",
"source-map": "^0.5.7"
},
"repository": {
"type": "git",
"url": "https://github.com/gaearon/react-hot-loader.git"
},
"keywords": [
"react",
"javascript",
"webpack",
"hmr",
"livereload",
"live",
"edit",
"hot",
"loader",
"reload"
],
"author": "Dan Abramov",
"license": "MIT",
"bugs": {
"url": "https://github.com/gaearon/react-hot-loader/issues"
},
"homepage": "https://github.com/gaearon/react-hot-loader",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-eslint": "^8.0.0",
"babel-jest": "^21.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.5.0",
"enzyme": "^2.2.0",
"eslint": "^4.7.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.5.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"jest": "^21.1.0",
"prettier": "^1.7.0",
"react": "^15.0.2",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"recompose": "^0.25.0",
"rimraf": "^2.5.2"
},
"engines": {
"node": ">= 6"
}
}