forked from gaearon/react-hot-loader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 1.93 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
{
"name": "rlyeh",
"version": "1.0.1",
"description": "Tweak React components in real time.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib",
"build": "tsc",
"test": "jest",
"test:watch": "yarn test -- --watch",
"lint": "tslint -p tsconfig.json",
"changelog": "standard-changelog",
"prepare": "yarn clean && yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/AaronFriel/rlyeh.git"
},
"keywords": [
"react",
"javascript",
"webpack",
"hmr",
"livereload",
"live",
"edit",
"hot",
"loader",
"reload"
],
"author": "Dan Abramov",
"license": "MIT",
"bugs": {
"url": "https://github.com/gaearon/rlyeh/issues"
},
"homepage": "https://github.com/AaronFriel/rlyeh",
"dependencies": {
"global": "^4.3.2",
"react-deep-force-update": "^2.1.1",
"react-proxy": "^3.0.0-alpha.0",
"source-map": "^0.6.1",
"tslib": "^1.8.0"
},
"devDependencies": {
"@types/babel-core": "^6.25.2",
"@types/node": "^8.0.34",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.10",
"@types/webpack": "^3.0.13",
"babel": "^6.23.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"create-react-class": "^15.6.2",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"escape-string-regexp": "^1.0.5",
"jest": "^21.2.1",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"recompose": "^0.26.0",
"rimraf": "^2.6.2",
"standard-changelog": "^1.0.5",
"tslint": "5.8.0",
"tslint-react": "^3.2.0",
"typescript": "^2.6.0-dev.20171013"
},
"engines": {
"node": ">= 6"
},
"jest": {
"setupFiles": [
"./test/shim.js",
"./test/setup.js"
]
}
}