-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.43 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
76
77
{
"name": "atlantis-battle-simulator",
"version": "0.0.1",
"description": "Battle simulator for Atlantis PBEM",
"scripts": {
"lint": "eslint . --ext .ts --ext .tsx",
"dev": "webpack --mode development --watch",
"dev-server": "ts-node-dev ./src/backend/app.ts",
"dev-types": "tsc",
"build": "webpack --mode production && tsc",
"test": "jest"
},
"author": "Raivis Gelsbergs",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@material-ui/core": "4.12.4",
"@material-ui/icons": "4.11.3",
"@material-ui/lab": "4.0.0-alpha.61",
"@reduxjs/toolkit": "^1.9.3",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "14.4.3",
"@types/express": "^4.17.3",
"@types/gtag.js": "0.0.3",
"@types/jest": "^28.1.7",
"@types/node": "^13.9.2",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"@types/react-test-renderer": "^17.0.2",
"@types/styled-components": "^5.0.1",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"babel-jest": "^28.1.3",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.10.7",
"body-parser": "^1.19.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "8.22.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "^26.8.5",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"express": "^4.17.1",
"immer": "^9.0.6",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"lodash": "^4.17.19",
"posthog-js": "^1.57.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-dropzone": "^12.0.4",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"styled-components": "^5.0.1",
"ts-loader": "^6.2.1",
"ts-node-dev": "2.0.0",
"typescript": "4.7.4",
"uuid": "^7.0.2",
"webpack": "5.76.0",
"webpack-cli": "4.6.0",
"webpack-manifest-plugin": "3.1.1"
}
}