-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.88 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
{
"name": "@samatech/image-api",
"version": "0.0.0",
"description": "Service that allows uploading an image, validating it, and uploading to a URL.",
"main": "src/main.ts",
"packageManager": "[email protected]",
"scripts": {
"redis": "docker run --name redis -d -p 6379:6379 redis:7.0",
"compose:reset": "docker compose down --rmi local -v --remove-orphans",
"frontend": "npm -C frontend run dev",
"dev:server": "pnpm --stream --parallel --filter '*types' --filter '*server' run dev",
"dev:lib": "pnpm --filter '*image-api' run dev",
"dev:frontend": "pnpm --stream --parallel -r run dev",
"test": "pnpm -r test",
"test:server": "pnpm --filter '*server' run test",
"integration": "pnpm --filter '*server' run integration",
"build:server": "pnpm --filter '*server' run build",
"build:lib": "pnpm --filter '*image-api' run build",
"build:types": "pnpm --filter '*types' run build",
"build": "pnpm --filter '*types' --filter '*image-api' --filter '*server' run build",
"build:image-rs": "npm -C lib run build:image-rs",
"lint": "pnpm run -r lint",
"start": "pnpm --filter '*server' run start",
"format": "pnpm run -r format",
"format:check": "pnpm run -r format:check",
"publish:types": "pnpm --filter '*types' publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samatechtw/image-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/samatechtw/image-api/issues"
},
"homepage": "https://github.com/samatechtw/image-api#readme",
"devDependencies": {
"@types/node": "^16.11.7",
"commitlint": "^17.3.0",
"form-data": "^4.0.0",
"node-fetch": "2.6.7",
"semantic-release": "^19.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@commitlint/config-angular": "^17.3.0",
"husky": "^8.0.2"
}
}