forked from ArjunVenat/Team-R-Production
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·69 lines (69 loc) · 2.22 KB
/
package.json
File metadata and controls
executable file
·69 lines (69 loc) · 2.22 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
68
69
{
"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/multer": "^1",
"@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": {
"@auth0/auth0-react": "^2.2.4",
"@mui/material": "^5.15.14",
"@mui/x-charts": "^7.3.0",
"@yarnpkg/pnpify": "^4.0.0-rc.45",
"axios": "^1.6.8",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.0",
"framer-motion": "^11.0.24",
"frontend": "workspace:^",
"multer": "^1.4.5-lts.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-charts": "^4.0.1",
"react-hook-form": "^7.51.2",
"react-material-ui-carousel": "^3.4.2"
}
}