-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"private": true,
"name": "@hot-loader/react-dom",
"version": "0.0.0",
"description": "The Hot version of React-DOM",
"main": "index.js",
"scripts": {
"clean": "rm -Rf target",
"prepare": "cp ./README.md ./source/README.md",
"patch": "node auto-publish/build.js",
"build": "run-s clean prepare patch",
"yarn-deduplicate": "yarn-deduplicate yarn.lock -s fewer",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hot-loader/react-dom.git"
},
"keywords": [
"HMR",
"react",
"hot-loader"
],
"author": "theKashey <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hot-loader/react-dom/issues"
},
"homepage": "https://github.com/hot-loader/react-dom#readme",
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.15",
"@types/node": "^10",
"@types/semver": "^6.0.1",
"jest": "^24.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"typescript": "^3.5.2",
"yarn-deduplicate": "^1.1.1"
},
"dependencies": {
"fs-extra": "^8.1.0",
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1",
"prop-types": "^15.6.2",
"semver": "^6.2.0"
}
}