forked from CS37033-2024-TA-Repos/2024-D-startercode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·59 lines (59 loc) · 1.91 KB
/
package.json
File metadata and controls
executable file
·59 lines (59 loc) · 1.91 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
{
"private": true,
"name": "softeng-starter-code",
"version": "1.0.0",
"description": "",
"license": "UNLICENSED",
"workspaces": [
"apps/*",
"configs/*",
"packages/*"
],
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"fix": "node scripts/fix.mjs",
"dev": "yarn run dotenv -e .env -- turbo run dev",
"dev:docker": "docker-compose -f docker-compose.dev.yaml up --build --renew-anon-volumes -d",
"db": "docker-compose -f docker-compose.db.yaml up --build",
"dev:stop": "docker-compose -f docker-compose.dev.yaml down --volumes --rmi local",
"deploy": "docker-compose -f docker-compose.prod.yaml up --build -d",
"deploy:stop": "docker-compose -f docker-compose.prod.yaml down",
"sync": "node scripts/sync.mjs",
"setup": "yarn install && yarn build:dev",
"test": "yarn run vitest --ui --open=false",
"test:docker": "docker-compose -f docker-compose.test.yaml up --build --renew-anon-volumes -d",
"test:stop": "docker-compose -f docker-compose.dev.yaml down --volumes --rmi local",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"postinstall": "husky install || exit 0",
"build": "turbo run build",
"docker:upload": "turbo run docker:upload --concurrency=1"
},
"packageManager": "yarn@4.0.2",
"devDependencies": {
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@vitest/ui": "^0.33.0",
"eslint": "^8.56.0",
"eslint-config-custom": "workspace:*",
"happy-dom": "^10.6.3",
"husky": "^8.0.0",
"prettier": "2.8.8",
"prettier-config-custom": "workspace:*",
"tsconfig-custom": "workspace:*",
"turbo": "latest",
"typescript": "^5.0.4",
"vitest": "^0.33.0"
},
"dependencies": {
"@yarnpkg/pnpify": "^4.0.0-rc.45",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.0",
"react": "^18.2.0",
"react-bootstrap": "^2.10.0",
"react-dom": "^18.2.0"
}
}