-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.18 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.18 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
63
64
65
66
67
68
69
70
71
{
"name": "funfunz-auth-demo",
"version": "1.0.1",
"description": "Authentication demo project using Funfunz",
"main": "build/index.js",
"type": "module",
"scripts": {
"merge-github": "(git remote add github https://github.com/Funfunz/auth-template.git | true) && git fetch github master:github && git merge github",
"forever:start": "forever start -o out.log -e error.log build/index.js",
"forever:stop": "forever stop build/index.js",
"build": "tsc",
"start": "node lib/",
"dev": "node --loader ts-node/esm ./src/index.ts",
"dev:sql": "FUNFUNZ_CONNECTOR=sql npm run dev",
"docker-compose:up": "docker compose up -d",
"docker-compose:down": "docker compose down --remove-orphans"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Funfunz/auth-demo.git"
},
"keywords": [
"funfunz",
"authentication",
"graphql"
],
"author": "joaogsleite",
"license": "MIT",
"bugs": {
"url": "https://github.com/Funfunz/auth-demo/issues"
},
"homepage": "https://github.com/Funfunz/auth-demo#readme",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cookie-session": "^2.0.42",
"@types/cors": "^2.8.9",
"@types/debug": "^4.1.5",
"@types/module-alias": "^2.0.0",
"@types/morgan": "^1.9.2",
"@types/node": "^20.4.8",
"@types/nodemailer": "^6.4.0",
"@types/nunjucks": "^3.1.3",
"@types/passport": "^1.0.4",
"@types/passport-azure-ad": "^4.0.8",
"@types/passport-oauth2": "^1.4.10",
"@types/serve-favicon": "^2.5.2",
"forever": "^3.0.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@funfunz/azure-blob-storage-connector": "^0.3.3",
"@funfunz/core": "^0.25.0",
"@funfunz/json-data-connector": "^1.2.0",
"@funfunz/sql-data-connector": "^0.12.1",
"body-parser": "^1.19.0",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"mysql2": "^2.2.5",
"nodemailer": "^6.4.17",
"nunjucks": "^3.2.2",
"passport": "^0.4.1",
"passport-oauth2": "^1.5.0",
"serve-favicon": "^2.5.0"
}
}