-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 902 Bytes
/
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
{
"name": "cardgame",
"version": "1.0.0",
"main": "index.js",
"private": true,
"repository": "https://github.com/Clonex/cardgame.git",
"author": "Michael Salling <clonex_kontakt@hotmail.com>",
"license": "MIT",
"workspaces": [
"client",
"server"
],
"scripts": {
"clean": "yarn workspaces run clean",
"clean:modules": "rm -rf node_modules/ ./*/node_modules",
"lint": "eslint */**/*.ts",
"lint:fix": "eslint */**/*.ts --fix"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.4"
},
"prettier": {
"semi": true,
"useTabs": true,
"singleQuote": true,
"tabWidth": 2
},
"devDependencies": {
"punycode": "^1.4.1",
"querystring-es3": "^0.2.1"
},
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}