-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.93 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
{
"name": "preact-weui",
"version": "0.0.3",
"description": "Weui for preact.",
"homepage": "https://github.com/afeiship/preact-weui",
"author": {
"name": "afei",
"email": "[email protected]"
},
"scripts": {
"clean": "rimraf dist",
"docs": "webpack-dev-server --inline --colors --config ./build/webpack.docs.conf.js",
"build-docs": "cross-env NODE_ENV=production webpack -p --config ./build/webpack.docs.build.conf.js",
"start": "node express",
"prebuild": "cross-env NODE_ENV=production npm run clean",
"build": "cross-env NODE_ENV=production webpack -p --config ./build/webpack.prod.conf.js",
"publish": "npm publish"
},
"main": "dist/preact-weui.js",
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.0.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-array-from": "^1.0.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.0.0",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"express": "^4.16.2",
"file-loader": "^0.11.2",
"glob": "^7.1.2",
"history": "^4.7.2",
"node-sass": "^4.5.3",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0"
},
"dependencies": {
"classnames": "^2.2.5",
"linkref": "^1.0.1",
"noop": "github:afeiship/noop",
"preact": "^8.1.0",
"object-assign": "^4.1.1",
"preact-append-to-document": "github:afeiship/preact-append-to-document",
"preact-router": "^2.5.2"
}
}