forked from ruanyl/universal-data-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.83 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.83 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "universal-data-loader",
"version": "0.4.0",
"description": "Makes it easy to load data for your components",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "./node_modules/.bin/tsc --outDir lib --declaration",
"prepublish": "npm run build",
"test": "npm run test-only",
"test-only": "jest --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/enzyme": "~3.1.10",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/jest": "~22.2.3",
"@types/react": "~16.4.0",
"@types/react-dom": "~16.0.5",
"@types/react-redux": "~7.0.0",
"@types/redux-logger": "~3.0.6",
"babel-core": "~6.26.3",
"enzyme": "~3.3.0",
"enzyme-adapter-react-16": "~1.1.1",
"express": "~4.16.3",
"html-webpack-plugin": "~3.2.0",
"jest": "~22.4.3",
"jest-enzyme": "~6.0.0",
"jest-localstorage-mock": "^2.4.0",
"react": "~16.4.0",
"react-dom": "~16.3.0",
"react-redux": "~6.0.0",
"redux": "~4.0.0",
"redux-logger": "~3.0.6",
"redux-saga": "~0.15.6",
"ts-jest": "~23.10.5",
"ts-loader": "~4.2.0",
"typescript": "~3.2.4",
"webpack": "~4.6.0",
"webpack-cli": "~2.0.14",
"webpack-dev-middleware": "~3.1.2"
},
"dependencies": {
"reducer-tools": "~0.2.1"
},
"peerDependencies": {
"react": ">= 16.4.0",
"react-dom": ">= 16.4.0",
"redux-saga": ">= 0.15.0",
"react-redux": ">= 4.0.0"
},
"author": "Yulong Ruan <ruanyu1@gmail.com>",
"license": "MIT",
"keywords": [
"react-component",
"react",
"data-loader",
"dataloader"
],
"repository": {
"type": "git",
"url": "https://github.com/ruanyl/universal-data-loader"
},
"homepage": "https://github.com/ruanyl/universal-data-loader",
"bugs": "https://github.com/ruanyl/universal-data-loader/issues"
}