forked from gaearon/react-hot-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.09 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "react-hot-loader",
"version": "4.0.0-beta.21",
"description": "Tweak React components in real time.",
"main": "index.js",
"types": "react-hot-loader.d.ts",
"homepage": "https://github.com/gaearon/react-hot-loader",
"repository": "https://github.com/gaearon/react-hot-loader/",
"license": "MIT",
"author": "Dan Abramov",
"scripts": {
"build": "rollup -c",
"ci": "scripts/ci.sh",
"format": "prettier --write \"**/*.{js,md,ts,json}\" *.{js,md,ts,json}",
"lint": "eslint .",
"prepublishOnly": "yarn build",
"prebuild": "rm -rf dist",
"precommit": "lint-staged",
"release": "standard-version -p && conventional-github-releaser -p angular",
"test": "yarn test:es2015 && yarn test:modern",
"test:es2015": "cross-env BABEL_TARGET=es2015 jest --no-cache",
"test:modern": "cross-env BABEL_TARGET=modern jest --no-cache"
},
"lint-staged": {
"*.{js,md,ts,json}": [
"prettier --write",
"git add"
]
},
"files": [
"dist",
"index.js",
"babel.js",
"patch.js",
"react-hot-loader.d.ts"
],
"keywords": [
"react",
"javascript",
"webpack",
"hmr",
"livereload",
"live",
"edit",
"hot",
"loader",
"reload"
],
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.1.0",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.5.0",
"codecov": "^3.0.0",
"conventional-github-releaser": "^2.0.0",
"create-react-class": "^15.6.3",
"cross-env": "^5.1.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15": "^1.0.5",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"husky": "^0.14.3",
"jest": "^22.1.4",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-mount": "^0.1.3",
"react-test-renderer": "16",
"recompose": "^0.26.0",
"rimraf": "^2.5.2",
"rollup": "^0.55.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"standard-version": "^4.3.0"
},
"dependencies": {
"fast-levenshtein": "^2.0.6",
"global": "^4.3.0",
"hoist-non-react-statics": "^2.3.1",
"prop-types": "^15.6.0",
"shallowequal": "^1.0.2"
},
"engines": {
"node": ">= 6"
},
"jest": {
"moduleDirectories": [
"node_modules",
"<rootDir>"
],
"setupFiles": [
"<rootDir>/testConfig/setupTests.js"
],
"transform": {
"^.+\\.js$": "<rootDir>/testConfig/babel.js"
}
}
}