forked from ruanyl/reapex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.04 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
{
"name": "reapex",
"version": "0.4.0",
"description": "A framework to build React application",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "./node_modules/.bin/tsc --outDir lib --declaration",
"test": "npm run test-only",
"test-only": "jest --coverage",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"ajv": "~6.6.2",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"express": "~4.16.3",
"glob": "~7.1.2",
"html-webpack-plugin": "~3.2.0",
"jest": "^24.7.0",
"jest-enzyme": "^7.0.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-router": "~4.2.0",
"react-router-dom": "~4.2.2",
"reselect": "~3.0.1",
"ts-jest": "^24.0.1",
"ts-loader": "~4.2.0",
"tslint": "~5.9.1",
"typescript": "~3.2.1",
"webpack": "~4.6.0",
"webpack-cli": "^3.3.0",
"webpack-dev-middleware": "~3.1.2"
},
"dependencies": {
"@types/enzyme": "~3.1.10",
"@types/jest": "~22.2.3",
"@types/node": "~10.0.2",
"@types/react": "^16.4.1",
"@types/react-dom": "^16.0.5",
"@types/react-redux": "~5.0.19",
"@types/react-router": "~4.0.25",
"@types/react-router-dom": "~4.2.6",
"@types/redux-immutable": "^4.0.1",
"@types/redux-logger": "~3.0.6",
"immutable-state-creator": "~1.0.0-beta6",
"ramda": "~0.25.0",
"react-redux": "~5.1.0",
"reducer-tools": "~1.0.0-beta2",
"redux": "^4.0.0",
"redux-immutable": "~4.0.0",
"redux-logger": "~3.0.6",
"redux-saga": "~0.16.0"
},
"peerDependencies": {
"react": ">= 16.3.0",
"react-dom": ">= 16.3.0",
"react-redux": "5.x",
"redux": "4.x",
"reselect": ">= 3.0"
},
"author": "Yulong Ruan <ruanyu1@gmail.com>",
"license": "MIT",
"keywords": [
"react-component",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/ruanyl/reapex.git"
},
"homepage": "https://github.com/ruanyl/reapex",
"bugs": "https://github.com/ruanyl/reapex/issues"
}