utquidem
Version:
The meta-framework suite designed from scratch for frontend-focused modern web development.
58 lines (57 loc) • 1.24 kB
JSON
{
"name": "tmp",
"version": "0.1.0",
"scripts": {
"reset": "del-cli node_modules",
"dev": "modern dev",
"build": "modern build",
"start": "modern start",
"new": "modern new",
"lint": "modern lint"
},
"engines": {
"node": ">=14.17.6"
},
"eslintConfig": {
"extends": [
"@modern-js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
],
"*.{js,jsx,mjs,mjsx,cjs,cjsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
]
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"dependencies": {
"@modern-js/runtime": "workspace:*",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@modern-js/app-tools": "workspace:*",
"@modern-js/plugin-jarvis": "workspace:*",
"del-cli": "^4.0.1",
"typescript": "^4",
"@types/react": "^17",
"@types/react-dom": "^17",
"@types/node": "^14"
},
"modernConfig": {
"runtime": {
"router": true,
"state": true
}
}
}