-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.73 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
{
"name": "board-game_ito",
"version": "1.0.0",
"description": "",
"author": "Rhina Kim <chihiroanihr@gmail.com>",
"license": "ISC",
"keywords": [],
"workspaces": [
"./packages/*"
],
"scripts": {
"eslint-check": "eslint \"./packages/**/*.{js,jsx,ts,tsx}\"",
"eslint-fix": "eslint --fix \"packages/**/*.{js,jsx,ts,tsx}\"",
"prettier-check": "prettier --list-different './packages/**/*.{js,ts,jsx,tsx}' './**/*.json'",
"prettier-fix": "prettier --write './packages/**/*.{js,ts,jsx,tsx}' './**/*.json' --config ./.prettierrc.json",
"test": "echo \"Error: no test specified\" && exit 1",
"install-local-package": "npm install --save @bgi/shared -w @bgi/client && npm install --save @bgi/shared -w @bgi/server",
"clean-modules": "rimraf node_modules",
"clean-dist:all": "npm run clean -ws",
"clean-dist:client": "npm run clean -w @bgi/client",
"clean-dist:server": "npm run clean -w @bgi/server",
"clean-dist:shared": "npm run clean -w @bgi/shared",
"build-ts": "tsc --build",
"build-ts-flags": "tsc -b -w -i",
"build-ts-verbose": "tsc --build --verbose",
"build:all": "npm run build -w @bgi/shared && npm run vite-build -w @bgi/client && npm run build -w @bgi/server",
"build:client": "npm run vite-build -w @bgi/client",
"build-check:client": "npm run tsc-build-check -w @bgi/client",
"build-watch:client": "npm run vite-build-watch -w @bgi/client",
"build:server": "npm run build -w @bgi/server",
"build-check:server": "npm run build-check -w @bgi/server",
"build-watch:server": "npm run build-watch -w @bgi/server",
"build:shared": "npm run build -w @bgi/shared",
"build-check:shared": "npm run build-check -w @bgi/shared",
"build-watch:shared": "npm run build-watch -w @bgi/shared",
"start-dev:all": "concurrently --kill-others \"npm run start-dev:server\" \"npm run start-dev:client\"",
"start-dev:client": "npm run vite-start-dev -w @bgi/client",
"start-dev:server": "npm run start-dev-nodemon -w @bgi/server",
"build-preview:client": "npm run vite-build-preview -w @bgi/client",
"preview:client": "npm run vite-preview -w @bgi/client",
"build-start:server": "npm run build-start -w @bgi/server",
"start:server": "npm run start -w @bgi/server"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"dependencies": {
"mongodb": "^6.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
}
}