1
1
mirror of https://github.com/c8r/x0.git synced 2024-09-17 16:47:19 +03:00
x0/package.json

80 lines
1.9 KiB
JSON
Raw Normal View History

2017-09-13 05:00:28 +03:00
{
2017-09-16 18:41:58 +03:00
"name": "@compositor/x0",
2017-12-13 23:37:24 +03:00
"version": "3.0.0-7",
2017-10-08 01:03:48 +03:00
"description": "Zero-config React development environment and static site generator",
2017-09-13 05:00:28 +03:00
"main": "index.js",
2017-09-13 05:02:59 +03:00
"bin": {
2017-09-14 01:35:13 +03:00
"x0": "bin/cli.js"
2017-09-13 05:02:59 +03:00
},
2017-09-13 05:00:28 +03:00
"scripts": {
2017-09-14 03:57:07 +03:00
"start": "./bin/cli.js dev docs/App.js -op 8888",
2017-12-11 19:08:21 +03:00
"build": "./bin/cli.js build docs/App.js --static -d docs",
2017-12-13 23:37:24 +03:00
"client": "./bin/cli.js build docs/App.js -d docs",
2017-10-07 23:53:08 +03:00
"test": "nyc ava",
"cover": "nyc report --reporter=html --reporter=lcov"
2017-09-13 05:00:28 +03:00
},
"keywords": [],
"author": "Brent Jackson",
"license": "MIT",
"dependencies": {
2017-10-19 21:07:14 +03:00
"@compositor/publish": "0.0.9",
2017-09-13 05:00:28 +03:00
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
2017-10-09 21:59:56 +03:00
"babel-minify-webpack-plugin": "^0.2.0",
2017-10-07 19:57:56 +03:00
"babel-plugin-transform-runtime": "^6.23.0",
2017-09-13 05:00:28 +03:00
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
2017-09-13 06:00:27 +03:00
"babel-register": "^6.26.0",
2017-10-07 21:05:00 +03:00
"chalk": "^2.1.0",
2017-12-09 00:19:29 +03:00
"glamor": "^2.20.40",
"glamorous": "^4.11.0",
2017-09-13 05:00:28 +03:00
"meow": "^3.7.0",
2017-09-16 03:43:58 +03:00
"opn": "^5.1.0",
2017-10-07 21:05:00 +03:00
"ora": "^1.3.0",
2017-09-13 07:26:40 +03:00
"pkg-up": "^2.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
2017-10-07 20:46:26 +03:00
"react-router-dom": "^4.2.2",
2017-09-13 07:26:40 +03:00
"read-pkg-up": "^2.0.0",
2017-09-13 23:17:26 +03:00
"update-notifier": "^2.2.0",
2017-12-13 23:37:24 +03:00
"webpack": "^3.10.0",
2017-10-08 01:36:50 +03:00
"webpack-dev-server": "^2.9.1"
2017-09-13 06:00:27 +03:00
},
"devDependencies": {
2017-10-08 01:36:50 +03:00
"@compositor/logo": "^1.2.2",
2017-12-07 20:13:48 +03:00
"ava": "^0.24.0",
2017-10-07 19:57:56 +03:00
"isomorphic-fetch": "^2.2.1",
2017-12-07 22:19:42 +03:00
"nano-style": "^1.0.0-20",
2017-10-07 23:53:08 +03:00
"nyc": "^11.2.1",
2017-10-08 01:36:50 +03:00
"refunk": "^2.0.0-1",
2017-12-08 00:34:07 +03:00
"styled-components": "^2.2.4",
2017-10-08 01:36:50 +03:00
"styled-system": "^1.0.7"
2017-09-13 07:26:40 +03:00
},
2017-09-14 01:35:13 +03:00
"x0": {
2017-10-08 01:03:48 +03:00
"title": "Compositor x0",
"cssLibrary": "styled-components",
2017-11-06 18:28:57 +03:00
"_basename": "/x0"
2017-10-07 23:53:08 +03:00
},
"ava": {
"files": [
"test/*",
"!test/components",
"!test/output"
],
2017-10-08 01:03:48 +03:00
"require": [
"babel-register"
],
2017-10-07 23:53:08 +03:00
"babel": {
"presets": [
"env",
"stage-0",
"react"
],
"plugins": [
"transform-runtime"
]
}
2017-09-13 05:00:28 +03:00
}
}