94 lines
3.6 KiB
JSON
94 lines
3.6 KiB
JSON
{
|
|
"name": "inula",
|
|
"description": "OpenInula is a JavaScript framework library.",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "eslint . --ext .ts --fix",
|
|
"lint-commit": "lint-staged",
|
|
"prettier": "prettier .prettierrc.js -w packages/**/*.{ts,tsx,js,jsx}",
|
|
"build:inula": "pnpm -F openinula build",
|
|
"test:inula": "pnpm -F openinula test",
|
|
"test:inula-intl": "pnpm -F inula-intl test",
|
|
"test:inula-request": "pnpm -F inula-request test",
|
|
"test:inula-router": "pnpm -F inula-router test",
|
|
"build:inula-cli": "pnpm -F inula-cli build",
|
|
"build:inula-intl": "pnpm -F inula-intl build",
|
|
"build:inula-request": "pnpm -F inula-request build",
|
|
"build:inula-router": "pnpm -F inula-router build",
|
|
"commitlint": "commitlint --config commitlint.config.js -e",
|
|
"postinstall": "husky install"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx}": [
|
|
"prettier .prettierrc.js -w"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "7.23.7",
|
|
"@babel/plugin-proposal-class-properties": "7.18.6",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
|
|
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
|
|
"@babel/plugin-proposal-optional-chaining": "7.21.0",
|
|
"@babel/plugin-proposal-private-methods": "7.18.6",
|
|
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
|
|
"@babel/plugin-syntax-jsx": "7.23.3",
|
|
"@babel/plugin-transform-arrow-functions": "7.23.3",
|
|
"@babel/plugin-transform-block-scoped-functions": "7.23.3",
|
|
"@babel/plugin-transform-block-scoping": "7.23.4",
|
|
"@babel/plugin-transform-classes": "7.23.8",
|
|
"@babel/plugin-transform-computed-properties": "7.23.3",
|
|
"@babel/plugin-transform-destructuring": "7.23.3",
|
|
"@babel/plugin-transform-for-of": "7.23.6",
|
|
"@babel/plugin-transform-literals": "7.23.3",
|
|
"@babel/plugin-transform-object-assign": "7.23.3",
|
|
"@babel/plugin-transform-object-super": "7.23.3",
|
|
"@babel/plugin-transform-parameters": "7.23.3",
|
|
"@babel/plugin-transform-react-jsx": "7.23.4",
|
|
"@babel/plugin-transform-react-jsx-source": "^7.23.3",
|
|
"@babel/plugin-transform-runtime": "7.23.7",
|
|
"@babel/plugin-transform-shorthand-properties": "7.23.3",
|
|
"@babel/plugin-transform-spread": "7.23.3",
|
|
"@babel/plugin-transform-template-literals": "7.23.3",
|
|
"@babel/preset-env": "7.23.8",
|
|
"@babel/preset-typescript": "7.23.3",
|
|
"@babel/runtime": "7.23.8",
|
|
"@commitlint/cli": "^17.8.1",
|
|
"@commitlint/config-conventional": "^17.8.1",
|
|
"@rollup/plugin-babel": "^6.0.4",
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
"@rollup/plugin-replace": "^4.0.0",
|
|
"@types/jest": "^29.5.11",
|
|
"@types/node": "^17.0.18",
|
|
"@typescript-eslint/eslint-plugin": "^6.18.1",
|
|
"@typescript-eslint/parser": "6.18.1",
|
|
"@babel/parser": "^7.24.7",
|
|
"magic-string": "^0.30.10",
|
|
"babel-jest": "^29.7.0",
|
|
"ejs": "^3.1.8",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-prettier": "^6.9.0",
|
|
"eslint-plugin-jest": "^22.15.0",
|
|
"eslint-plugin-no-function-declare-after-return": "^1.0.0",
|
|
"eslint-plugin-react": "7.14.3",
|
|
"husky": "^8.0.3",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"lint-staged": "^15.2.0",
|
|
"openinula": "workspace:*",
|
|
"prettier": "^3.1.1",
|
|
"rollup": "^2.79.1",
|
|
"rollup-plugin-dts": "^6.1.0",
|
|
"rollup-plugin-execute": "^1.1.1",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"rollup-plugin-esbuild": "^6.1.1",
|
|
"rollup-plugin-polyfill-node": "^0.13.0",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.x",
|
|
"npm": ">=7.x"
|
|
}
|
|
}
|