mancala/package.json

32 lines
854 B
JSON
Raw Normal View History

2021-06-27 02:34:43 +03:00
{
"name": "mancala-frontend",
2022-07-13 16:01:38 +03:00
"version": "0.1.3-beta.12",
2022-07-14 13:39:24 +03:00
"description": "Mancala Game Frontend",
2021-06-27 02:34:43 +03:00
"main": "index.js",
"scripts": {
"dev": "parcel src/index.html",
2021-06-30 22:35:41 +03:00
"test": "echo \"Error: no test specified\" && exit 1",
"build:parcel": "parcel build ./src/index.html --public-url ./ --no-source-maps",
"build": "npm run clean && npm run build:parcel",
"clean": "rm -rf dist/*"
2021-06-27 02:34:43 +03:00
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
2022-06-04 19:26:40 +03:00
"@szhsin/react-menu": "^3.0.2",
"@types/": "szhsin/react-menu",
2022-05-15 01:54:30 +03:00
"@types/uuid": "^8.3.4",
"mancala.js": "^0.0.2-beta.3",
2021-06-27 02:34:43 +03:00
"react": "^17.0.2",
2022-05-15 01:54:30 +03:00
"react-dom": "^17.0.2",
"uuid": "^8.3.2"
2021-06-27 02:34:43 +03:00
},
"devDependencies": {
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"parcel-bundler": "^1.12.5",
"typescript": "^4.3.4"
}
}