-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
128 lines (128 loc) · 4.41 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
{
"name": "re-admin",
"version": "0.19.0-2",
"description": "Declarative UI, routes, and API for web admin client",
"repository": "cantonjs/re-admin",
"scripts": {
"start": "cross-env PORT=3000 run-p host client",
"host": "output-host --no-external",
"client": "webpack-dev-server",
"format": "prettier-eslint --write \"+(src|test)/**/*.js\"",
"i18n": "node ./node_modules/.bin/neo-json-i18n ./src/locale.json -c=i18nconfig.js -o=locales",
"prebuild": "rimraf dist lib es",
"build:es": "cross-env NODE_ENV=production BABEL_ENV=es babel src -d es",
"build:cjs": "cross-env NODE_ENV=production BABEL_ENV=cjs babel src -d lib",
"build:umd": "cross-env NODE_ENV=production BABEL_ENV=development webpack --env.build --progress --colors",
"build:min": "yarn build:umd --env.min -p",
"build": "run-s build:*",
"analyzer:stats": "cross-env NODE_ENV=production BABEL_ENV=development webpack --env.build --env.min -p --profile --json > .stats.json",
"analyzer:run": "webpack-bundle-analyzer .stats.json",
"analyzer": "run-s analyzer:*",
"predoc": "rimraf docs",
"doc:build": "cross-env CDN=\"https://cantonjs.github.io/re-admin\" NODE_ENV=production BABEL_ENV=development webpack -p --progress --colors",
"doc:github": "git-directory-deploy --directory docs",
"doc": "run-s doc:*",
"clean": "run-p prebuild predoc",
"preversion": "yarn build"
},
"files": [
"README.md",
"LICENSE.md",
"locales",
"lib",
"es",
"dist"
],
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"author": "Cap32 <[email protected]> (https://github.com/Cap32)",
"contributors": [
"jaceechan (https://github.com/jaceechan)"
],
"license": "MIT",
"dependencies": {
"cookie": "^0.3.1",
"create-react-context": "^0.2.2",
"create-react-ref": "^0.1.0",
"empty-functions": "^1.0.2",
"fetch-extra": "^1.0.1",
"history": "4.x",
"hoist-non-react-statics": "^2.5.0",
"moment": "^2.18.1",
"prop-types": "^15.5.7",
"react-document-title": "^2.0.3",
"react-form-mobx": "^1.0.0-1",
"react-lifecycles-compat": "^3.0.3",
"react-router-mobx": "^1.2.2",
"tiny-invariant": "^1.0.3",
"tiny-querystring": "^0.0.2",
"warning": "^3.0.0"
},
"peerDependencies": {
"antd": "^3.0.0",
"mobx": "^3.0.0 || ^4.0.0 || ^5.0.0",
"mobx-react": "^4.0.0 || ^5.0.0",
"react": "^15.0.0-0 || ^16.0.0-0",
"react-dom": "^15.0.0-0 || ^16.0.0-0",
"react-quill": "^1.0.0",
"react-router-dom": "^4.0.0"
},
"devDependencies": {
"antd": "^3.10.9",
"babel-cli": "^6.26.0",
"babel-core": "^6.17.0",
"babel-eslint": "^8.1.2",
"babel-loader": "^7.1.0",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-import": "^1.1.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-system-import-transformer": "^2.4.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-0-without-async": "^1.0.0",
"babel-runtime": "^6.26.0",
"cross-env": "^3.1.3",
"css-loader": "^0.28.1",
"eslint": "^4.14.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"git-directory-deploy": "^1.5.1",
"html-webpack-plugin": "^3.2.0",
"less": "^2.7.2",
"less-loader": "^4.1.0",
"mobx": "^4.2.1",
"mobx-react": "^5.1.2",
"neo-json-i18n": "^2.1.0",
"npm-run-all": "^4.0.2",
"offline-plugin": "^5.0.6",
"output-host": "^3.1.0",
"postcss-loader": "^1.3.3",
"prettier-eslint-cli": "^4.7.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-hot-loader": "^3.1.3",
"react-quill": "^1.3.1",
"react-router-dom": "^4.4.0-beta.6",
"rimraf": "^2.5.4",
"statuses": "^1.4.0",
"style-loader": "^0.17.0",
"sw-toolbox": "^3.6.0",
"webpack": "^4.29.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
}
}