1
1
mirror of https://github.com/c8r/x0.git synced 2024-11-09 00:35:13 +03:00
x0/package.json

94 lines
2.3 KiB
JSON
Raw Permalink Normal View History

2017-09-13 05:00:28 +03:00
{
2017-09-16 18:41:58 +03:00
"name": "@compositor/x0",
2018-04-24 05:31:59 +03:00
"version": "4.0.2",
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": {
2018-02-24 19:09:29 +03:00
"start": "./bin/cli.js docs/App.js -op 8888",
2018-01-11 00:31:33 +03:00
"static": "./bin/cli.js build docs/App.js --static -d docs",
2018-02-11 21:47:01 +03:00
"build": "./bin/cli.js build docs/App.js -d docs -c docs/webpack.config.js",
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": {
"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",
2018-01-11 00:31:33 +03:00
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.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-15 00:46:54 +03:00
"fela": "^6.1.0",
"fela-dom": "^7.0.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-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",
2017-12-16 21:15:04 +03:00
"react-dev-utils": "^4.2.1",
2017-12-15 01:21:05 +03:00
"react-dom": "^16.2.0",
2017-12-15 00:46:54 +03:00
"react-fela": "^6.1.1",
2018-01-11 00:31:33 +03:00
"react-loadable": "^5.3.1",
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",
2018-02-25 18:42:03 +03:00
"webpack": "^4.0.0",
"webpack-dev-server": "^3.0.0",
2018-02-11 20:18:17 +03:00
"webpack-merge": "^4.1.1"
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",
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",
2018-02-11 21:47:01 +03:00
"raw-loader": "^0.5.1",
2017-12-15 00:18:02 +03:00
"react-router-dom": "^4.2.2",
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-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
}