-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.54 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
{
"name": "utd-chess-bots",
"private": true,
"version": "0.0.0",
"workspaces": ["src/client", "src/server"],
"scripts": {
"dev": "nodemon src/server/main.ts",
"start": "NODE_ENV=production ts-node ./src/server/main.ts",
"build": "vite build",
"docs:build": "typedoc",
"docs:dev": "nodemon --exec 'yarn run docs:build' --watch ./tsconfig.json,./src/**/*,./docs/**/*",
"test": "vitest",
"format": "prettier --write src/*",
"format-check": "prettier --check src/*",
"lint": "eslint . --fix --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint-check": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"dependencies": {
"chess.js": "^1.0.0-beta.6",
"eslint-plugin-tsdoc": "^0.2.17",
"typescript": "^4.9.3",
"vite-express": "^0.11.1"
},
"devDependencies": {
"@knodes/typedoc-plugin-pages": "^0.23.4",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"lunr": "^2.3.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"ts-node": "^10.9.1",
"typedoc": "^0.23.0",
"vite": "^4.5.5",
"vitest": "^1.6.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.8"
}
}