-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "bolivian-cacho-game",
"description": "React project for practicing the Bolivian dice game Cacho",
"version": "1.0.1",
"author": "Jhordy Gavinchu <dev@jhordyess.com>",
"license": "MIT",
"private": true,
"keywords": [
"React",
"Bolivia",
"Dice-game",
"Cacho"
],
"scripts": {
"dev": "webpack serve --config webpack.config.dev.cjs",
"build": "yarn lint && webpack --config webpack.config.prod.cjs",
"start": "yarn build && serve -s dist -l 3000",
"format": "prettier --write .",
"postinstall": "husky",
"lint": "eslint .",
"check:ts": "tsc --noEmit",
"test": "jest",
"validate": "yarn check:ts && yarn lint && yarn test"
},
"packageManager": "yarn@4.5.3",
"dependencies": {
"@xstate/react": "^4.1.3",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"xstate": "^5.19.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"autoprefixer": "^10.4.20",
"clean-webpack-plugin": "^4.0.0",
"cname-webpack-plugin": "^3.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.16.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.13.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.2",
"postcss-loader": "^8.1.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"serve": "^14.2.4",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.16",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}