-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.8 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
{
"name": "reapex-module-component-registry",
"version": "1.1.0",
"description": "reapex component registry module",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"start": "webpack --config webpack.config.js && node server.js",
"build": "./node_modules/.bin/tsc --outDir lib --declaration",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruanyl/reapex-module-component-registry.git"
},
"keywords": [
"reapex",
"component",
"registry"
],
"devDependencies": {
"@types/enzyme": "~3.1.10",
"@types/jest": "~22.2.3",
"@types/react-dom": "~16.8.4",
"@types/react-redux": "~5.0.19",
"ajv": "~6.9.1",
"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",
"immutable": "^4.0.0-rc.12",
"jest": "^24.7.0",
"jest-enzyme": "^7.0.2",
"prettier": "^2.0.5",
"react": "~16.8.6",
"react-dom": "~16.8.6",
"react-redux": "~5.1.0",
"reapex": "0.12.0",
"redux": "^4.0.0",
"redux-saga": "^1.1.0",
"ts-jest": "^24.0.1",
"ts-loader": "~4.2.0",
"tslint": "~5.9.1",
"typescript": "3.9",
"webpack": "~4.6.0",
"webpack-cli": "^3.3.0",
"webpack-dev-middleware": "~3.1.2"
},
"dependencies": {
"@types/react": "^16.9.2"
},
"peerDependencies": {
"reapex": ">= 0.10.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 120
},
"author": "Yulong Ruan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ReapexJS/reapex-module-component-registry/issues"
},
"homepage": "https://github.com/ReapexJS/reapex-module-component-registry#readme"
}