-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.04 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
{
"name": "secure-auth-api-root",
"private": true,
"version": "1.0.0",
"packageManager": "npm@10.9.0",
"scripts": {
"db:up": "docker compose up -d postgres",
"db:down": "docker compose down",
"db:logs": "docker compose logs -f postgres",
"db:reset": "docker compose down -v",
"db:ps": "docker compose ps",
"setup": "npm run setup:web && npm run setup:api",
"setup:web": "npm --prefix apps/web install",
"setup:api": "go -C apps/api mod tidy",
"dev": "concurrently -k -n api,web -c green,cyan \"npm run dev:api\" \"npm run dev:web\"",
"dev:api": "go -C apps/api run ./cmd/server",
"dev:web": "npm --prefix apps/web run dev",
"build": "npm run build:api && npm run build:web",
"build:api": "go -C apps/api build ./...",
"build:web": "npm --prefix apps/web run build",
"test": "npm run test:api",
"test:api": "go -C apps/api test ./...",
"audit:web": "npm --prefix apps/web audit --audit-level=moderate"
},
"devDependencies": {
"concurrently": "9.1.2"
},
"description": "Secure authentication application built with Go, PostgreSQL, React, and TypeScript. PostgreSQL is intended to run through Docker Compose for local development so the environment stays reproducible and predictable.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"ansi-regex": "^5.0.1",
"ansi-styles": "^4.3.0",
"chalk": "^4.1.2",
"cliui": "^8.0.1",
"color-convert": "^2.0.1",
"color-name": "^1.1.4",
"emoji-regex": "^8.0.0",
"escalade": "^3.2.0",
"get-caller-file": "^2.0.5",
"has-flag": "^4.0.0",
"is-fullwidth-code-point": "^3.0.0",
"lodash": "^4.18.1",
"require-directory": "^2.1.1",
"rxjs": "^7.8.2",
"shell-quote": "^1.8.3",
"string-width": "^4.2.3",
"strip-ansi": "^6.0.1",
"supports-color": "^8.1.1",
"tree-kill": "^1.2.2",
"tslib": "^2.8.1",
"wrap-ansi": "^7.0.0",
"y18n": "^5.0.8",
"yargs": "^17.7.2",
"yargs-parser": "^21.1.1"
},
"keywords": [],
"author": "",
"license": "ISC"
}