lowdefy/packages/cli/package.json

84 lines
2.0 KiB
JSON
Raw Normal View History

2020-10-23 22:44:09 +08:00
{
"name": "@lowdefy/cli",
2021-02-16 18:10:12 +08:00
"version": "3.9.0",
2020-10-23 22:44:09 +08:00
"license": "Apache-2.0",
"description": "Lowdefy CLI",
"homepage": "https://lowdefy.com",
"bugs": {
"url": "https://github.com/lowdefy/lowdefy/issues"
},
"contributors": [
{
"name": "Sam Tolmay",
"url": "https://github.com/SamTolmay"
},
{
"name": "Gerrie van Wyk",
"url": "https://github.com/Gervwyk"
}
],
"repository": {
"type": "git",
"url": "https://github.com/lowdefy/lowdefy.git"
},
"bin": {
2020-12-01 23:33:34 +08:00
"lowdefy": "dist/index.js"
2020-10-23 22:44:09 +08:00
},
"files": [
2020-10-28 18:19:09 +08:00
"dist/*"
2020-10-23 22:44:09 +08:00
],
"main": "dist/index.js",
"scripts": {
"build": "yarn webpack",
"clean": "rm -rf dist",
"cli": "yarn node ./dist/index.js",
"cli:build": "yarn build && yarn node ./dist/index.js",
"prepare": "yarn build",
2020-10-30 17:06:39 +08:00
"test": "FORCE_COLOR=3 jest --coverage",
2021-02-09 21:10:12 +08:00
"webpack": "webpack --config webpack.config.js"
2020-10-23 22:44:09 +08:00
},
"dependencies": {
2021-02-16 18:10:12 +08:00
"@lowdefy/helpers": "3.9.0",
"@lowdefy/node-utils": "3.9.0",
"apollo-server-express": "2.19.2",
"axios": "0.21.1",
2020-10-23 22:44:09 +08:00
"chalk": "4.1.0",
"chokidar": "3.5.1",
"commander": "6.2.1",
2020-10-27 20:58:20 +08:00
"decompress": "4.2.1",
"decompress-targz": "4.1.1",
"dotenv": "8.2.0",
2020-10-29 19:51:36 +08:00
"express": "4.17.1",
"fs-extra": "9.1.0",
"graphql": "15.5.0",
"inquirer": "7.3.3",
"js-yaml": "4.0.0",
2020-10-29 19:51:36 +08:00
"opener": "1.5.2",
"ora": "5.3.0",
2020-12-11 23:26:33 +08:00
"reload": "3.1.1",
"uuid": "8.3.2"
2020-10-23 22:44:09 +08:00
},
"devDependencies": {
2021-02-17 15:08:59 +08:00
"@babel/cli": "7.12.16",
"@babel/core": "7.12.16",
"@babel/preset-env": "7.12.16",
"@babel/preset-react": "7.12.13",
2021-02-16 18:10:12 +08:00
"@lowdefy/block-tools": "3.9.0",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "7.0.0",
"css-loader": "5.0.2",
"html-webpack-plugin": "4.5.1",
"jest": "26.6.3",
"react": "17.0.1",
"react-dom": "17.0.1",
2020-10-29 22:47:36 +08:00
"style-loader": "2.0.0",
"webpack": "5.22.0",
2021-01-28 16:10:55 +08:00
"webpack-cli": "4.4.0"
},
"publishConfig": {
"access": "public"
2020-10-23 22:44:09 +08:00
}
}