1
1
mirror of https://github.com/c8r/x0.git synced 2024-10-27 07:29:15 +03:00
x0/package.json

100 lines
2.4 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",
2018-05-22 05:23:45 +03:00
"version": "5.0.0-4",
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": {
2018-05-20 00:06:12 +03:00
"x0": "cli.js"
2017-09-13 05:02:59 +03:00
},
2017-09-13 05:00:28 +03:00
"scripts": {
2018-05-20 00:06:12 +03:00
"start": "./cli.js docs -op 8888",
2018-05-21 00:23:40 +03:00
"static": "./cli.js build docs --static",
"build": "./cli.js build 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": {
2018-05-20 22:59:08 +03:00
"@compositor/jsx-loader": "^1.0.0-2",
2018-05-20 22:46:52 +03:00
"@compositor/log": "^1.0.0-0",
2018-05-20 23:12:17 +03:00
"@mdx-js/loader": "^0.9.0",
"@mdx-js/mdx": "^0.9.0",
2018-05-20 00:06:12 +03:00
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-macros": "^2.2.1",
2017-10-07 19:57:56 +03:00
"babel-plugin-transform-runtime": "^6.23.0",
2018-05-20 00:06:12 +03:00
"babel-preset-env": "^1.7.0",
2017-09-13 05:00:28 +03:00
"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",
2018-05-20 00:06:12 +03:00
"chalk": "^2.4.1",
"clipboardy": "^1.2.3",
"connect-history-api-fallback": "^1.5.0",
2018-05-20 23:44:30 +03:00
"emotion": "^9.1.3",
2018-05-20 00:06:12 +03:00
"emotion-server": "^9.1.3",
"find-up": "^2.1.0",
"fs-extra": "^6.0.1",
2018-05-21 00:07:39 +03:00
"glamor": "^2.20.40",
2018-05-20 00:06:12 +03:00
"html-minifier": "^3.5.15",
"koa-connect": "^2.0.1",
"meow": "^5.0.0",
"mini-html-webpack-plugin": "^0.2.3",
"pkg-conf": "^2.1.0",
"react": "^16.3.2",
"react-dev-utils": "^5.0.1",
"react-dom": "^16.3.2",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"read-pkg-up": "^3.0.0",
"semver": "^5.5.0",
"update-notifier": "^2.5.0",
"webpack": "^4.8.3",
"webpack-merge": "^4.1.2",
"webpack-serve": "^1.0.2"
2017-09-13 06:00:27 +03:00
},
"devDependencies": {
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",
2018-05-20 00:06:12 +03:00
"nano-style": "^1.0.0",
2018-05-20 00:20:25 +03:00
"nyc": "^11.8.0",
2018-05-20 23:12:17 +03:00
"rebass": "^2.0.0-2",
2018-05-20 00:06:12 +03:00
"refunk": "^2.2.4",
"styled-components": "^3.2.6",
2018-05-20 23:12:17 +03:00
"styled-system": "^2.2.5"
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",
2018-05-20 00:06:12 +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-12-18 19:43:41 +03:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/c8r/x0.git"
},
"bugs": {
"url": "https://github.com/c8r/x0/issues"
},
"homepage": "https://github.com/c8r/x0#readme"
2017-09-13 05:00:28 +03:00
}