-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.01 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
{
"name": "react-int",
"version": "0.3.3",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --watch",
"start": "nodemon --watch src --exec babel src --out-dir dist",
"build": "babel src --out-dir dist",
"doc": "docsify serve docs",
"lint": "eslint src",
"jest": "jest"
},
"files": [
"dist",
"withRedux",
"README.md"
],
"keywords": [
"react",
"redux",
"redux-saga",
"dva"
],
"author": "https://github.com/leafOfTree",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.14.2",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^6.0.1",
"redux-saga": "^1.0.5"
},
"dependencies": {}
}