-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·67 lines (67 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·67 lines (67 loc) · 2.67 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
{
"name": "tt",
"version": "1.0.0",
"description": "",
"private": true,
"workspaces": [
"packages/*",
"libs/*"
],
"scripts": {
"client": "npm -w ./packages/client run",
"server": "npm -w ./packages/server run",
"shared": "npm -w ./packages/shared run",
"build": "npx concurrently \"npm run server build\" \"npm run client build:v\"",
"start": "npx concurrently \"npm run client start\" \"npm run server start\"",
"dev": "npx concurrently \"npm run client dev\" \"npm run server dev\" \"npm run shared dev\"",
"lint": "npm run lint --workspaces --if-present",
"format": "npm run format --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"lint:lib": "npm run lint -w ./libs/ --if-present",
"format:lib": "npm run format -w ./libs/ --if-present",
"typecheck:lib": "npm run typecheck -w ./libs/ --if-present",
"test:lib": "npm run test -w ./libs/ --if-present",
"test": "npm run test --workspaces --if-present",
"test:e2e": "npm run test:e2e --workspaces --if-present",
"test:e2e:fast": "npm run test:e2e:fast --workspaces --if-present",
"check": "npm run typecheck && npm run lint && npm run test",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && find . -name 'dist' -type d -prune -exec rm -rf '{}' + && find . -name 'build' -type d -prune -exec rm -rf '{}' +",
"i:all": "npm i && npm install --workspaces --if-present",
"db:init": "npm run db:gen && npm run db:push && npm run db:seed",
"db:gen": "dotenv -e .env -- npm run server db:gen",
"db:push": "dotenv -e .env -- npm run server db:push",
"db:seed": "dotenv -e .env -- npm run server db:seed",
"docker:dev": "docker compose --profile dev up"
},
"devDependencies": {
"@swc/core": "^1.7.4",
"@types/node": "^22.0.2",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.9",
"eslint-plugin-workspaces": "^0.10.1",
"prettier": "^3.3.3",
"run-script-webpack-plugin": "^0.2.0",
"swc-loader": "^0.2.6",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^6.0.0",
"unplugin-swc": "^1.5.1",
"vitest": "^2.0.5",
"vite-tsconfig-paths": "^4.3.2",
"webpack-node-externals": "^3.0.0"
},
"overrides": {
"eslint": {
"file-entry-cache": "^8.0.0"
}
}
}