-
Notifications
You must be signed in to change notification settings - Fork 316
/
Copy pathpackage.json
executable file
·129 lines (129 loc) · 3.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
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
{
"name": "hera-weweb",
"version": "1.0.10",
"description": "wx 2 app",
"main": "bin/weweb",
"bin": {
"hweweb": "bin/weweb"
},
"scripts": {
"start": "npm run build && ./bin/weweb demo",
"build": "NODE_ENV=production webpack --progress",
"build:dev": "webpack --progress",
"dev": "WATCH=true webpack --config webpack.config.js --progress",
"precommit": "lint-staged",
"format":
"prettier-standard './*.js' && prettier-standard 'src/**/*.js' && prettier-standard 'lib/**/*.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/weidian-inc/hera.git"
},
"lint-staged": {
"{*.js,*weweb,*.json}": ["prettier-standard", "git add"]
},
"dependencies": {
"archiver": "^2.1.0",
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.18.0",
"boxen": "^0.8.1",
"chalk": "^1.1.3",
"chokidar": "^1.6.1",
"commander": "^2.9.0",
"concat-with-sourcemaps": "^1.0.4",
"convert-source-map": "^1.3.0",
"copy-dir": "^0.3.0",
"copyfiles": "^1.2.0",
"et-improve": "^0.1.3",
"faye-websocket": "^0.11.0",
"glob": "^7.1.1",
"growl": "^1.10.0",
"jsondiffpatch": "^0.2.4",
"koa": "^1.2.4",
"koa-compress": "^1.0.9",
"koa-formidable": "^1.0.0",
"koa-logger": "^1.3.0",
"koa-router": "^5.4.0",
"koa-send": "^3.2.0",
"koa-static": "^2.0.0",
"merge": "^1.2.0",
"minimatch": "^3.0.2",
"mkdir-p": "0.0.7",
"node-parallel": "^0.1.6",
"node-serial": "^0.1.1",
"object-assign": "^4.1.0",
"open": "0.0.5",
"promisify-node": "^0.4.0",
"semver-compare": "^1.0.0",
"source-map": "^0.5.6",
"tunnel": "0.0.4",
"update-notifier": "^1.0.2",
"whatwg-fetch": "^2.0.3",
"wxml-transpiler": "^1.0.4",
"wxss-transpiler": "^1.0.4"
},
"devDependencies": {
"actionsheet": "^0.1.2",
"autoscale-canvas": "0.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.15.0",
"classnames": "^2.2.5",
"component-classes": "^1.2.6",
"component-closest": "^1.0.1",
"component-emitter": "^1.2.1",
"component-event": "^0.2.0",
"component-events": "^1.0.10",
"component-file-picker": "^0.2.1",
"component-query": "0.0.3",
"component-querystring": "^2.0.0",
"component-raf": "^1.2.0",
"component-tap-event": "^1.1.4",
"component-tween": "^1.2.0",
"component-upload": "^0.3.0",
"css-loader": "^0.28.7",
"domify": "^1.4.0",
"ei-loader": "^0.1.1",
"eslint": "^3.18.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"extract-text-webpack-plugin": "^3.0.2",
"html-loader": "^0.4.4",
"husky": "^0.14.3",
"jr-qrcode": "^1.0.5",
"json-loader": "^0.5.4",
"lint-staged": "^6.0.0",
"nodemon": "^1.11.0",
"nprogress": "^0.2.0",
"pinch-zoom": "^0.3.8",
"prettier-standard": "^7.0.3",
"prop-detect": "^1.1.0",
"radio-component": "0.0.2",
"request-component": "0.0.4",
"rxjs": "^5.5.4",
"style-loader": "^0.19.0",
"webpack": "^3.5.6",
"webpack-bundle-analyzer": "^2.9.0"
},
"browser": {
"emitter": "component-emitter",
"querystring": "component-querystring",
"event": "component-event",
"tap-event": "component-tap-event",
"closest": "component-closest",
"tween": "component-tween",
"raf": "component-raf",
"classes": "component-classes",
"file-picker": "component-file-picker",
"upload": "component-upload",
"query": "component-query",
"events": "component-events",
"request": "request-component"
},
"license": "BSD-2-Clause"
}