-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.15 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.15 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
{
"name": "cvai",
"private": true,
"version": "0.1.0",
"engines": {
"node": "22"
},
"workspaces": [
"packages/**"
],
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@eslint/js": "^9.14.0",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-tsconfig-paths": "^1.0.1",
"concurrently": "7.0.0",
"eslint": "^9.23.0",
"globals": "^15.9.0",
"html-webpack-plugin": "^5.3.2",
"prettier": "^3.3.3",
"ts-loader": "^9.2.6",
"typescript": "5.6.3",
"typescript-eslint": "^8.5.0",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.1"
},
"scripts": {
"client": "yarn workspace @cvai/client",
"server": "yarn workspace @cvai/server",
"tools": "yarn workspace @cvai/tools",
"build-client": "yarn client build",
"build-server": "yarn server build",
"build-clean": "rm -rf packages/*/{dist,tsconfig.tsbuildinfo} packages/*/node_modules node_modules tsconfig.tsbiuldinfo",
"dev": "concurrently -n client,server -c cyan,magenta 'yarn client dev' 'yarn server start:dev' --kill-others",
"build": "yarn client build && yarn server build",
"db:create": "chmod +x ./scripts/db_create.sh && ./scripts/db_create.sh",
"lint:check": "yarn client lint:check && yarn server lint:check",
"lint:fix": "yarn client lint:fix && yarn server lint:fix",
"prettier:check": "yarn client prettier:check && yarn server prettier:check",
"prettier:fix": "yarn client prettier:fix && yarn server prettier:fix",
"codecheck": "yarn client codecheck && yarn server codecheck",
"codecheck:fix": "yarn client codecheck:fix && yarn server codecheck:fix",
"prod:server": "yarn workspaces focus --production @cvai/server",
"prod:client": "yarn workspaces focus --production @cvai/client",
"tsc:check": "yarn client tsc:check && yarn server tsc:check"
},
"packageManager": "yarn@4.8.1"
}