nav1/package.json

28 lines
794 B
JSON
Raw Normal View History

2024-10-22 19:30:12 +03:00
{
"name": "nav1",
"version": "0.0.0",
"main": "./src/index.tsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "brojs server --port=8099 --with-open-browser",
"build": "npm run clean && brojs build --dev",
"build:prod": "npm run clean && brojs build",
"clean": "rimraf dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@brojs/cli": "^1.3.0",
2024-10-24 20:04:54 +03:00
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
2024-10-24 18:51:40 +03:00
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
2024-10-22 19:30:12 +03:00
"express": "^4.19.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.27.0"
}
}