-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
44 lines (44 loc) · 1.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
{
"name": "react-onsenui-kitchensink",
"version": "0.0.1",
"description": "Kitchen Sink example for Onsen UI 2.0 React extension.",
"main": "index.js",
"scripts": {
"dev": "npm run copy-css; watchify -vd -e main.js -o dist.js & http-server . -c 1",
"copy-css": "ncp node_modules/onsenui/css css",
"test": "echo \"Error: no test specified\" && exit 1"
},
"browserify": {
"transform": [
[
"babelify",
{
"ignore": "onsenui/**/*.js"
}
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/argelius/react-onsenui-kitchensink.git"
},
"author": "Andreas Argelius <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/argelius/react-onsenui-kitchensink/issues"
},
"homepage": "https://github.com/argelius/react-onsenui-kitchensink#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.5.0",
"babelify": "^8.0.0",
"http-server": "^0.11.1",
"ncp": "^2.0.0",
"onsenui": "^2.9.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-onsenui": "^1.10.0",
"watchify": "^3.7.0"
}
}