-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·84 lines (84 loc) · 2.19 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
{
"name": "uadp-react",
"description": "uadp component",
"main": "lib/index.js",
"version": "1.5.4",
"repository": {
"type": "git",
"url": "https://github.com/www3com/uadp-react"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/www3com/uadp-react"
},
"homepage": "https://github.com/www3com/uadp-react.git",
"author": "jason <[email protected]>",
"keywords": [
"react",
"react-component",
"antd",
"uadp",
"es6"
],
"dependencies": {
"antd": "^2.13.6",
"babel-plugin-import": "^1.0.1",
"classnames": "^2.2.5",
"dva": "^1.0.0",
"object-assign": "~4.1.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-free-scrollbar": "^0.2.5",
"reqwest": "^2.0.5"
},
"devDependencies": {
"antd-tools": "^0.13.0",
"babel-cli": "^6.5.2",
"babel-core": "^6.5.2",
"babel-plugin-typecheck": "~3.5.1",
"babel-preset-es2015": "~6.3.13",
"babel-preset-react": "~6.3.13",
"babel-preset-stage-0": "~6.3.13",
"babel-plugin-transform-decorators-legacy2": "1.3.5",
"babel-plugin-add-module-exports": "~0.1.2",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-dva-hmr": "^0.1.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-runtime": "^6.9.2",
"copy-webpack-plugin": "^3.0.1",
"dora": "^0.4.3",
"dora-plugin-proxy": "^0.8.2",
"dora-plugin-webpack": "^0.8.1",
"dora-plugin-webpack-hmr": "^0.2.1",
"expect": "^1.20.2",
"html-repath-webpack-plugin": "^0.2.2",
"html-webpack-plugin": "^2.22.0"
},
"scripts": {
"compile": "babel -d lib/ src/",
"compile:watch": "babel -w -d lib/ src/",
"prepublish": "npm run compile",
"release": "npm run compile && node index.js && npm publish",
"release:patch": "npm test && npm run compile && npm version patch && git push && npm publish",
"dev": "dora --plugins \"proxy?port=8989,webpack,webpack-hmr\""
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
],
"plugins": [
"add-module-exports",
"typecheck",
"babel-plugin-transform-decorators-legacy2"
]
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}