mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-15 22:22:51 +00:00
56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"name": "demo",
|
|
"version": "1.0.0",
|
|
"description": "A Recore application demo.",
|
|
"scripts": {
|
|
"start": "nowa2 start",
|
|
"build": "nowa2 build",
|
|
"cloud": "nowa2 build -o",
|
|
"precommit": "lint-staged",
|
|
"test": "jest",
|
|
"upgrade": "nowa2 upgrade",
|
|
"deploy": "nowa2 deploy",
|
|
"deploy:online": "nowa2 deploy -o"
|
|
},
|
|
"engines": {
|
|
"node": ">= 8.9.0",
|
|
"npm": ">=6.1.0"
|
|
},
|
|
"dependencies": {
|
|
"@ali/api-loader": "^0.7.8",
|
|
"@ali/api-runtime": "^0.1.4",
|
|
"@ali/deep": "1.17.2",
|
|
"@ali/recore": "^1.5.0",
|
|
"@alifd/layout": "^0.1.19",
|
|
"@alife/theme-254": "^0.6.2",
|
|
"@antv/data-set": "^0.10",
|
|
"bizcharts": "^3.2",
|
|
"react": "^16"
|
|
},
|
|
"devDependencies": {
|
|
"@ali/nowa-recore-solution": "^1.7.0",
|
|
"@ali/recore-loader": "^2.0.0",
|
|
"@nowa/cli": "^0.6",
|
|
"@recore/config": "^2.0.0",
|
|
"@types/jest": "^21",
|
|
"@types/node": "^7",
|
|
"@types/react": "^16",
|
|
"eslint": "^6.5.1",
|
|
"husky": "^1.1.2",
|
|
"jest": "^23.4.1",
|
|
"lint-staged": "^7.1.2",
|
|
"tslib": "^1.9.3",
|
|
"typescript": "^3.1.3",
|
|
"prettier": "^1.18.2"
|
|
},
|
|
"lint-staged": {
|
|
"./src/**/*.{ts,tsx}": [
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
},
|
|
"nowa": {
|
|
"solution": "@ali/nowa-recore-solution"
|
|
}
|
|
}
|