mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-02-23 14:39:32 +08:00
73 lines
2.0 KiB
JSON
73 lines
2.0 KiB
JSON
{
|
|
"name": "@lowdefy/server",
|
|
"version": "0.0.0-alpha.4",
|
|
"license": "Apache-2.0",
|
|
"description": "",
|
|
"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"
|
|
},
|
|
"files": [
|
|
"dist/*"
|
|
],
|
|
"scripts": {
|
|
"babel": "babel src --out-dir dist",
|
|
"babel:dev": "babel src --out-dir dev",
|
|
"build": "yarn webpack && yarn babel",
|
|
"build:dev": "yarn webpack:dev && yarn babel:dev",
|
|
"build:docker": "docker build --tag lowdefy/lowdefy .",
|
|
"clean": "rm -rf dist && rm -rf dev",
|
|
"npm-publish": "npm publish --access public",
|
|
"prepublishOnly": "yarn build",
|
|
"start": "nodemon dev/server.js",
|
|
"test": "jest --coverage",
|
|
"version:prerelease": "yarn version prerelease",
|
|
"version:patch": "yarn version patch -d",
|
|
"version:minor": "yarn version minor -d",
|
|
"version:major": "yarn version major -d",
|
|
"webpack": "webpack --config webpack.prod.js",
|
|
"webpack:dev": "webpack --config webpack.dev.js"
|
|
},
|
|
"dependencies": {
|
|
"@lowdefy/block-tools": "1.0.2",
|
|
"@lowdefy/graphql": "0.0.0-alpha.4",
|
|
"apollo-server-express": "2.19.0",
|
|
"express": "4.17.1",
|
|
"graphql": "15.4.0",
|
|
"react": "17.0.1",
|
|
"react-dom": "17.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "7.12.1",
|
|
"@babel/core": "7.12.3",
|
|
"@babel/preset-env": "7.12.1",
|
|
"@babel/preset-react": "7.12.5",
|
|
"babel-jest": "26.6.3",
|
|
"babel-loader": "8.2.1",
|
|
"clean-webpack-plugin": "3.0.0",
|
|
"css-loader": "5.0.1",
|
|
"html-webpack-plugin": "4.5.0",
|
|
"jest": "26.6.3",
|
|
"nodemon": "2.0.6",
|
|
"style-loader": "2.0.0",
|
|
"webpack": "5.4.0",
|
|
"webpack-cli": "4.2.0",
|
|
"webpack-dev-server": "3.11.0",
|
|
"webpack-merge": "5.3.0"
|
|
}
|
|
}
|