-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.89 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
{
"name": "dothree",
"description": "Logic online game similar to a mixture of tetris and tic-tac-toe",
"version": "1.2.11",
"keywords": [
"game",
"online",
"tetris",
"tic-tac-toe",
"logic"
],
"author": {
"name": "Nikita Galadiy",
"email": "dev@neki.guru",
"url": "https://neki.guru/"
},
"license": "MIT",
"main": "./app/server.js",
"browserslist": [
"> 0.1%",
"ie > 11"
],
"scripts": {
"start": "node ./dist/server.js",
"build": "yarn build:server && yarn build:client",
"build:client": "webpack --config ./webpack/client/index.js --mode=production",
"build:server": "webpack --config ./webpack/server/index.js --mode=production",
"watch": "webpack --config ./webpack/index.js --mode=development --watch",
"lint": "eslint \"./**/*.{js,ts,tsx}\" --ignore-path .gitignore --fix"
},
"dependencies": {
"dayjs": "1.11.5",
"express": "4.18.2",
"html-webpack-plugin": "5.6.0",
"loglevel": "1.9.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-github-btn": "1.4.0",
"react-router": "6.24.1",
"react-router-dom": "6.24.1",
"socket.io": "4.7.5",
"socket.io-client": "4.7.5",
"styled-components": "5.3.9",
"styled-normalize": "8.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"@babel/core": "7.24.8",
"@babel/preset-react": "7.24.7",
"@types/express": "4.17.21",
"@types/node": "20.14.10",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-router-dom": "5.3.3",
"@types/styled-components": "5.1.26",
"alias-reuse": "3.0.5",
"babel-loader": "9.1.2",
"copy-webpack-plugin": "12.0.2",
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
"ts-loader": "9.5.1",
"typescript": "5.5.3",
"webpack": "5.93.0",
"webpack-cli": "5.1.4"
}
}