-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2 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
76
77
{
"name": "reapex-module-template",
"version": "1.0.0",
"description": "reapex plugin template",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build": "./node_modules/.bin/tsc --outDir lib --declaration",
"start": "webpack --config webpack.config.js && node server.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruanyl/reapex-plugin-template.git"
},
"keywords": [
"reapex",
"template"
],
"devDependencies": {
"@types/enzyme": "~3.1.10",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "~22.2.3",
"@types/react": "^16.9.2",
"@types/react-dom": "~16.8.4",
"@types/react-redux": "~7.1.7",
"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",
"import-sort-cli": "6.0.0",
"import-sort-parser-typescript": "6.0.0",
"import-sort-style-as": "1.2.3",
"jest": "^24.7.0",
"jest-enzyme": "^7.0.2",
"react": "~16.13.0",
"react-dom": "~16.13.0",
"react-redux": "~7.2.0",
"reapex": "0.11.1",
"redux": "^4.0.0",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"ts-jest": "^24.0.1",
"ts-loader": "~4.2.0",
"tslint": "~5.9.1",
"typescript": "^3.8.1-rc",
"webpack": "~4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-middleware": "~3.7.2"
},
"dependencies": {},
"peerDependencies": {
"react-redux": ">= 7.0.0",
"reapex": ">= 0.11.1"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"importSort": {
".ts, .tsx": {
"parser": "typescript",
"style": "as"
}
},
"author": "Yulong Ruan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ReapexJS/reapex-plugin-template/issues"
},
"homepage": "https://github.com/ReapexJS/reapex-plugin-template#readme"
}