package.json 590 B

12345678910111213141516171819
  1. {
  2. "name": "ncore-ui-kit-example-web",
  3. "version": "1.0.0-pre-alpha.0",
  4. "main": "index.ts",
  5. "type": "commonjs",
  6. "private": true,
  7. "scripts": {
  8. "android": "react-native run-android",
  9. "ios": "react-native run-ios",
  10. "lint": "eslint .",
  11. "start": "react-native start",
  12. "test": "jest",
  13. "web": "webpack serve --mode development --config ./webpack.config.js",
  14. "web:build": "cross-env NODE_ENV=production webpack --mode production --config ./webpack.config.js"
  15. },
  16. "engines": {
  17. "node": ">= 22.11.0"
  18. }
  19. }