-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.41 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
67
68
69
70
71
72
73
74
75
{
"name": "battle-farm",
"version": "0.1.0",
"description": "Implementation of a board game, designed with help of ChatGPT and Midjourney",
"main": "/public/index.html",
"scripts": {
"test": "jest",
"start": "cross-env NODE_ENV=development webpack serve --config configs/webpack/webpack.config.ts",
"generate-images": "webpack --progress --config configs/assetsWebpack/webpack_assets.config.ts && node assets/thumbs/dictGenerate.js && npx rimraf assets/thumbs/dictGenerate.js",
"build": "cross-env NODE_ENV=production webpack --config configs/webpack/webpack.config.ts && npx serve dist "
},
"repository": {
"type": "git",
"url": "git+https://github.com/octaharon/battle-farm.git"
},
"keywords": [
"react"
],
"author": "Alexander Uskov <neolord.tmb@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/octaharon/battle-farm/issues"
},
"homepage": "https://github.com/octaharon/battle-farm#readme",
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@types/node": "^18.16.2",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.1",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"babel-loader": "^9.1.2",
"compression-webpack-plugin": "^10.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^4.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.1",
"husky": "^8.0.3",
"image-minimizer-webpack-plugin": "^3.8.2",
"jest": "^29.3.1",
"mini-css-extract-plugin": "^2.7.5",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-refresh": "^0.14.0",
"rimraf": "^5.0.0",
"sass": "^1.62.1",
"sass-loader": "^13.2.2",
"serve": "^14.1.2",
"sharp": "^0.32.1",
"style-loader": "^3.3.2",
"terser-webpack-plugin": "^5.3.8",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"webpack-dev-server": "^4.15.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3",
"webpackbar": "^5.0.2"
},
"dependencies": {}
}