-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.38 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
{
"name": "keycloak-authentication",
"version": "1.0.0",
"description": "Full-stack Text Analysis Application with Keycloak Authentication",
"author": {
"name": "Yeasir Hossain",
"email": "yeasir06@example.com",
"url": "https://github.com/Yeasir-Hossain"
},
"repository": {
"type": "git",
"url": "https://github.com/Yeasir-Hossain/keycloak-authentication"
},
"keywords": [
"keycloak",
"authentication",
"text-analysis",
"full-stack",
"react",
"node",
"mongodb",
"redis",
"docker"
],
"scripts": {
"install:all": "npm run install:client && npm run install:server",
"install:client": "cd client && npm install",
"install:server": "cd server && npm install",
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "cd client && npm run dev",
"dev:server": "cd server && npm run dev",
"build": "npm run build:client && npm run build:server",
"build:client": "cd client && npm run build",
"build:server": "cd server && npm run build",
"start": "cd server && npm run start",
"test": "npm run test:client && npm run test:server",
"test:client": "cd client && npm run test",
"test:server": "cd server && npm run test"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=16.0.0"
},
"private": false,
"license": "MIT"
}