-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.75 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.75 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
{
"name": "snapkit",
"version": "1.0.0",
"description": "Full-stack image optimization platform monorepo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/snapkit-studio/dashboard.git"
},
"homepage": "https://snapkit.studio",
"bugs": {
"url": "https://github.com/snapkit-studio/dashboard/issues"
},
"private": true,
"scripts": {
"//": "docker 스크립트의 루트 package.json 위치 이유]",
"///": "packages 폴더 복사가 필요해 루트 디렉터리에서 실행해야하기 때문에 루트의 스크립트에 추가함",
"api:docker:build": "docker-compose -f apps/api/docker-compose.yml pull",
"api:docker:login": "aws ecr get-login-password --region us-east-1 | docker login --username AWS --password-stdin 717993113417.dkr.ecr.us-east-1.amazonaws.com",
"api:docker:run": "docker run --env-file apps/api/.env.development -d snapkit-api",
"build": "turbo run build",
"check-types": "turbo run check-types",
"dev": "turbo run dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"image-preprocessor:docker:build": "docker build -f apps/image-preprocessor/Dockerfile . -t image-preprocessor",
"image-preprocessor:docker:run": "docker run --env-file apps/image-preprocessor/.env -d image-preprocessor",
"lint": "turbo run lint",
"openapi": "turbo run openapi",
"prepare": "husky"
},
"dependencies": {
"remeda": "2.32.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.7.0",
"dotenv-cli": "^11.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "3.6.2",
"prettier-plugin-tailwindcss": "0.7.1",
"turbo": "^2.6.0"
},
"packageManager": "pnpm@10.12.4",
"engines": {
"node": "22"
}
}