29 lines
780 B
JSON
29 lines
780 B
JSON
{
|
|
"name": "keact",
|
|
"version": "1.0.0",
|
|
"description": "Experiment to recreate minimal react implementation.",
|
|
"license": "ISC",
|
|
"author": "",
|
|
"type": "commonjs",
|
|
"private": true,
|
|
"scripts": {
|
|
"babel": "babel src --out-dir lib --extensions \".ts,.tsx\"",
|
|
"start": "webpack serve",
|
|
"build": "webpack --mode production"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.28.3",
|
|
"@babel/core": "^7.28.5",
|
|
"@babel/preset-env": "^7.28.5",
|
|
"@babel/preset-react": "^7.28.5",
|
|
"@babel/preset-typescript": "^7.28.5",
|
|
"@types/react": "^19.2.7",
|
|
"@types/react-dom": "^19.2.3",
|
|
"babel-loader": "^10.0.0",
|
|
"html-webpack-plugin": "^5.6.5",
|
|
"webpack": "^5.103.0",
|
|
"webpack-cli": "^6.0.1",
|
|
"webpack-dev-server": "^5.2.2"
|
|
}
|
|
}
|