-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
142 lines (142 loc) · 3.22 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "audit-tuh",
"version": "0.0.1",
"private": true,
"description": "audit-tuh created by Rekit.",
"keywords": [
"rekit"
],
"babel": {
"presets": [
"es2015",
"react",
"babel-preset-stage-0"
],
"plugins": [
"react-hot-loader/babel",
"syntax-dynamic-import",
"lodash",
[
"import",
{
"libraryName": "antd",
"style": false
}
],
[
"module-resolver",
{
"alias": {
"src": "./src"
}
}
]
],
"env": {
"dev": {
"plugins": []
},
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"include": [
"index.js",
"src/**/*.js",
"tools/lib/*.js"
],
"exclude": [
"tools/**/templates",
".tmp"
],
"reporter": [
"lcov",
"text-summary"
],
"cache": false,
"sourceMap": false,
"instrument": true
},
"rekit": {
"version": "2.0.5",
"devPort": 6075,
"portalPort": 6076,
"buildPort": 6077,
"plugins": [],
"css": "less"
},
"scripts": {
"start": "node ./tools/server.js",
"build": "node ./tools/build.js",
"test": "node ./tools/run_test.js"
},
"devDependencies": {
"argparse": "^1.0.7",
"axios": "^0.16.2",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-import": "^1.4.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-module-resolver": "^2.7.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"css-loader": "^0.28.4",
"enzyme": "^2.8.2",
"eslint": "^4.0.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-import-resolver-babel-module": "^3.0.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.1.0",
"estraverse": "^4.2.0",
"estraverse-fb": "^1.3.1",
"express": "^4.15.3",
"express-history-api-fallback": "^2.2.1",
"file-loader": "^0.11.2",
"jsdom": "^11.0.0",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"lodash": "^4.17.4",
"lodash-webpack-plugin": "^0.11.4",
"mocha": "^3.4.2",
"mocha-webpack": "^0.7.0",
"nock": "^9.0.13",
"npm-run": "^4.1.2",
"nyc": "^11.0.2",
"react": "^15.6.1",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.6.1",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "next",
"redux": "^3.7.0",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.2.3",
"redux-thunk": "^2.2.0",
"rekit-core": "^2.0.0",
"rekit-portal": "^2.0.0",
"sinon": "^2.3.5",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.0.0",
"webpack-bundle-analyzer": "^2.8.2",
"webpack-dev-middleware": "^1.10.2",
"webpack-hot-middleware": "^2.18.0",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"antd": "^2.12.7"
}
}