-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.75 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "mastermind",
"version": "0.2.0",
"description": "A multiplayer-online version of the game \"Mastermind\".",
"keywords": [
"game",
"mastermind",
"multiplayer",
"open-source",
"nextjs",
"socket.io"
],
"homepage": "https://github.com/McTom234/mastermind",
"repository": {
"type": "git",
"url": "https://github.com/McTom234/mastermind.git"
},
"author": {
"name": "McTom234",
"email": "mc_tom234@gmx.de",
"url": "https://github.com/McTom234"
},
"contributors": [],
"maintainers": [],
"bugs": {
"url": "https://github.com/McTom234/mastermind/issues",
"email": "mc_tom234@gmx.de"
},
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"server-build": "tsc -p server",
"server-start": "tsc -p server && node --enable-source-maps --experimental-specifier-resolution=node --loader ts-node/esm server/express.ts"
},
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@types/express": "^4.17.17",
"@types/node": "^18.15.11",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"next": "^13.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rotating-file-stream": "^3.1.0",
"sass": "^1.61.0",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"ts-node": "^10.9.1",
"tslog": "^4.8.2",
"typescript": "^5.0.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"eslint-config-next": "^13.3.0",
"eslint-config-prettier": "^8.8.0",
"stylelint": "^15.4.0",
"stylelint-config-hudochenkov": "^9.0.0",
"stylelint-config-standard-scss": "^7.0.1",
"stylelint-order": "^6.0.3",
"stylelint-prettier": "^3.0.0",
"stylelint-webpack-plugin": "^4.1.0"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"next/core-web-vitals",
"prettier"
],
"plugins": [
"@typescript-eslint"
]
},
"prettier": {
"printWidth": 160,
"semi": true,
"singleQuote": true,
"arrowParens": "always"
},
"stylelint": {
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-hudochenkov/order",
"stylelint-prettier/recommended"
],
"plugins": [
"stylelint-order"
],
"rules": {
"declaration-no-important": true
}
},
"browserslist": [
"defaults",
"not dead",
"not op_mini all"
],
"license": "MIT"
}