This repository was archived by the owner on Jun 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·57 lines (57 loc) · 1.8 KB
/
package.json
File metadata and controls
executable file
·57 lines (57 loc) · 1.8 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
{
"private": true,
"name": "softeng-startercode-d25",
"version": "1.0.1",
"scripts": {
"dev": "dotenv -e .env -- turbo run dev",
"dev:wpi": "dotenv -e .env.wpi -- turbo run dev",
"dev:prod": "dotenv -e .env.prod -- turbo run dev",
"docker": "dotenv -e .env -- docker-compose -f ./docker/docker-compose.yml up --build",
"fix": "yarn cache clean && yarn install",
"test": "yarn run vitest --ui --open=false",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"generate_sdk": "yarn install && yarn dlx @yarnpkg/sdks base",
"build": "turbo run build",
"setup": "bash ./scripts/setup.sh",
"deploy": "bash ./scripts/deploy.sh",
"prepare": "husky",
"db": "docker-compose -f docker/docker-compose.db.yml up --build",
"db:detach": "docker-compose -f docker/docker-compose.db.yml up --build -d"
},
"devDependencies": {
"@types/node": "^22.13.13",
"@vitest/ui": "^3.0.9",
"@yarnpkg/pnpify": "^4.1.4",
"eslint": "^9.23.0",
"eslint-config-custom": "workspace:*",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"prettier-config-custom": "workspace:*",
"ts-config-custom": "workspace:*",
"turbo": "*",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
},
"dependencies": {
"common": "workspace:*",
"dotenv": "^16.4.7",
"dotenv-cli": "^7.4.4"
},
"resolutions": {
"dotenv": "^16.4.7",
"dotenv-cli": "^7.4.4",
"@types/node": "^22.13.13",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"eslint": "^9.23.0",
"vitest": "^3.0.9"
},
"workspaces": [
"apps/*",
"configs/*",
"packages/*"
],
"packageManager": "yarn@4.7.0+sha512.5a0afa1d4c1d844b3447ee3319633797bcd6385d9a44be07993ae52ff4facabccafb4af5dcd1c2f9a94ac113e5e9ff56f6130431905884414229e284e37bb7c9"
}