-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 KB
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
{
"name": "react-hot-export-loader",
"version": "1.3.1",
"main": "index.js",
"repository": "git@github.com:ahonn/react-hot-export-loader.git",
"author": "ahonn <ahonn95@outlook.com>",
"license": "MIT",
"scripts": {
"test": "jest ./test/loader.test.js",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
},
"collectCoverage": true,
"testEnvironment": "node"
},
"dependencies": {
"@babel/generator": "^7.5.0",
"@babel/parser": "^7.5.0",
"@babel/traverse": "^7.5.0",
"@babel/types": "^7.5.0",
"loader-utils": "^1.2.3"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"coveralls": "^3.0.5",
"eslint": "^6.0.1",
"eslint-plugin-react": "^7.14.2",
"jest": "^24.8.0",
"memory-fs": "^0.4.1",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-hot-loader": "^4.12.7",
"webpack": "^4.36.1"
}
}