-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 3.2 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "traefik-sso",
"version": "0.1.1",
"description": "Docker image implementing a straightforward Single Sign-On authentication for your containers behind a Traefik v2 edge router",
"scripts": {
"build": "npm run clean && npm run build:back && npm run build:front",
"build:prod": "npm run clean && npm run build:back:prod && npm run build:front:prod",
"start": "npm run clean && concurrently npm:watch:back npm:watch:front npm:serve:dev",
"test": "echo Not implemented && exit 1",
"serve:dev": "wait-on dist/main.js && cross-env TARGET_ENV=dev nodemon ./dist/main.js",
"serve:prod": "cross-env TARGET_ENV=prod node dist/main.js",
"docker:dev:build": "cross-env PWD=./ docker-compose -f ./docker-compose.yml -f ./docker-compose.dev.yml build && docker image prune -f",
"docker:dev:up": "cross-env PWD=./ docker-compose -f ./docker-compose.yml -f ./docker-compose.dev.yml up",
"docker:dev:down": "cross-env PWD=./ docker-compose -f ./docker-compose.yml -f ./docker-compose.dev.yml down",
"clean": "node ./node_modules/del-cli/cli.js ./dist/",
"postinstall": "cd ./backend/ && npm install && cd ../frontend/ && npm install && cd ../ && npm run audit:fix",
"audit:fix": "npm audit fix && cd ./backend/ && npm audit fix && cd ../frontend/",
"wipe": "npm run clean && node ./node_modules/del-cli/cli.js ./backend/node_modules/ ./frontend/node_modules/ ./node_modules/",
"watch:back": "cd ./backend/ && npm run build:watch",
"watch:front": "cd ./frontend/ && npm run build:watch",
"build:back": "cd ./backend/ && npm run build",
"build:front": "cd ./frontend/ && npm run build",
"build:back:prod": "cd ./backend/ && npm run build:prod",
"build:front:prod": "cd ./frontend/ && npm run build:prod",
"prettier": "prettier --write ."
},
"nodemonConfig": {
"ignore": [
"/data/*",
"/workspace/dist/spa"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomaschampagne/traefik-sso.git"
},
"engines": {
"node": ">=12"
},
"keywords": [
"traefik",
"sso",
"docker",
"auth"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"config": {
"unsafe-perm": true
},
"author": {
"name": "Thomas Champagne",
"email": "[email protected]",
"web": "https://thomaschampagne.github.io"
},
"maintainers": [
{
"name": "Thomas Champagne",
"email": "[email protected]",
"web": "https://thomaschampagne.github.io"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/thomaschampagne/traefik-sso/issues"
},
"homepage": "https://github.com/thomaschampagne/traefik-sso#readme",
"readme": "README.md",
"devDependencies": {
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"del-cli": "^3.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"wait-on": "^5.1.0",
"husky": "^4.2.5",
"pretty-quick": "^2.0.1"
}
}