mancala/package.json

30 lines
760 B
JSON
Raw Normal View History

2021-06-27 02:34:43 +03:00
{
"name": "mancala-frontend",
2022-05-15 02:19:05 +03:00
"version": "0.1.3-beta.3",
2021-06-27 02:34:43 +03:00
"description": "",
"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-05-15 01:54:30 +03:00
"@types/uuid": "^8.3.4",
2022-05-12 23:41:24 +03:00
"mancala.js": "^0.0.2-beta.1",
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"
}
}