-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·75 lines (75 loc) · 2.06 KB
/
package.json
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
70
71
72
73
74
75
{
"private": true,
"name": "softeng-starter-code",
"version": "1.0.0",
"type": "module",
"description": "",
"license": "UNLICENSED",
"workspaces": [
"apps/*",
"configs/*",
"packages/*"
],
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"dev": "docker-compose -f docker-compose.dev.yaml up --build --renew-anon-volumes -d",
"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",
"test": "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": "[email protected]",
"devDependencies": {
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@vitest/ui": "^0.33.0",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-custom": "workspace:*",
"happy-dom": "^10.6.3",
"husky": "^8.0.0",
"postcss": "^8.4.33",
"prettier": "2.8.8",
"prettier-config-custom": "workspace:*",
"tailwindcss": "^3.4.1",
"tsconfig-custom": "workspace:*",
"turbo": "latest",
"typescript": "^5.0.4",
"vitest": "^0.33.0"
},
"dependencies": {
"@yarnpkg/pnpify": "^4.0.0-rc.45",
"flowbite": "^2.2.1",
"flowbite-react": "^0.7.2",
"react": "^18.2.0",
"react-bootstrap": "^2.10.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1"
},
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
},
"[email protected]": {
"unplugged": true
},
"[email protected]": {
"unplugged": true
},
"[email protected]": {
"unplugged": true
},
"[email protected]": {
"unplugged": true
}
}
}