-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
42 lines (42 loc) · 1.51 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
{
"name": "sgs",
"version": "1.0.0",
"main": "index.js",
"license": "GPL-3.0-only",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/node": "^18.7.15",
"@types/react": "^16.9.23",
"@types/socket.io": "2.1.13",
"@types/socket.io-client": "^1.4.32",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"ts-node": "^8.6.2",
"tslint": "6.0.0",
"typescript": "^4.3.5"
},
"scripts": {
"prettier": "prettier --config ./.prettierrc --write \"./**/*.{ts,tsx,css,json}\"",
"lint": "eslint --max-warnings 0 -c .eslintrc.js \"./src/**/*.{ts,tsx}\"",
"build": "rm -rf build && tsc",
"transpile": "cd ./src/server && yarn install && yarn build",
"transpile:client": "cd ./src/ui/platforms/desktop && yarn install && yarn build:mac",
"patch": "ts-node ./src/pre_release.ts",
"check-translations": "tsc -p ./tools/tsconfig.json && node --max-old-space-size=8192 ./tools/missing_translation_check.js"
},
"dependencies": {
"eslint-config-prettier": "^8.5.0"
}
}