mancala/package.json

36 lines
1009 B
JSON
Raw Normal View History

2021-06-27 02:34:43 +03:00
{
"name": "mancala-frontend",
2022-07-14 23:55:55 +03:00
"version": "0.1.3-beta.14",
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-07-14 17:04:45 +03:00
"@types/styled-jsx": "^3.4.4",
2022-05-15 01:54:30 +03:00
"@types/uuid": "^8.3.4",
"mancala.js": "^0.0.2-beta.3",
2022-07-15 14:15:28 +03:00
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0",
2022-07-14 17:04:45 +03:00
"styled-jsx": "^5.0.2",
2022-05-15 01:54:30 +03:00
"uuid": "^8.3.2"
2021-06-27 02:34:43 +03:00
},
"devDependencies": {
2022-07-14 17:04:45 +03:00
"@babel/core": "^7.18.6",
2021-06-27 02:34:43 +03:00
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
2022-07-15 14:15:28 +03:00
"parcel": "^2.6.2",
"process": "^0.11.10",
2021-06-27 02:34:43 +03:00
"typescript": "^4.3.4"
}
}