-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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
{
"name": "metadmin",
"version": "0.0.5",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md,css}\"",
"docker:dev": "docker compose -f .docker/development.yml --env-file .env",
"docker:dbs": "docker compose -f .docker/databases.yml --env-file .env",
"docker:prod": "docker compose -f .docker/production.yml --env-file .env"
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/material": "^5.10.0",
"daisyui": "^2.24.0"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@testing-library/cypress": "^8.0.3",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/d3": "^7.4.0",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "^18.7.3",
"@types/webpack": "^5.28.0",
"autoprefixer": "^10.4.8",
"babel-loader": "^8.2.5",
"cypress": "^10.4.0",
"cypress-social-logins": "^1.14.0",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-css-order": "^1.3.0",
"prettier-plugin-tailwindcss": "^0.1.13",
"sass": "^1.54.4",
"tailwindcss": "^3.1.8",
"turbo": "^1.4.3",
"typescript": "^4.7.4",
"webpack": "^5.74.0"
},
"engines": {
"npm": ">=8",
"node": ">=16"
},
"packageManager": "[email protected]"
}