This repository has been archived by the owner on Jul 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 4.22 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "veritas",
"version": "0.0.1",
"description": "This is an auth0 experimental project.",
"repository": {
"type": "git",
"url": "ssh://[email protected]/nicolaspearson/veritas.git"
},
"author": "Nicolas Pearson",
"license": "MIT",
"engines": {
"node": ">=v16.16.0"
},
"main": "src/index.ts",
"scripts": {
"build": "rimraf dist && yarn copy:assets && webpack --config webpack.config.js",
"build:tsc": "rimraf dist && tsc --project tsconfig.tsc.json",
"copy:assets": "mkdir -p dist && cp -r src/views dist/views",
"db:logs": "yarn exec:docker-compose logs -f db",
"db:migration:create": "typeorm migration:create -n",
"db:migration:generate:missing": "yarn build && yarn exec:script:generate-migration veritas",
"db:migration:generate": "typeorm migration:generate -n",
"db:migration:revert": "typeorm migration:revert",
"db:migration:run": "yarn build:tsc && typeorm migration:run",
"db:start": "yarn exec:docker-compose up -d --renew-anon-volumes --force-recreate db",
"db:stop": "docker-compose rm -f -s -v db",
"docker:build": "yarn exec:docker-compose build --no-cache veritas",
"docker:logs": "yarn exec:docker-compose logs -f veritas",
"docker:start": "yarn exec:docker-compose up -d --build veritas",
"doctor": "yarn dlx @yarnpkg/doctor .",
"exec:docker-compose": "docker-compose -f docker-compose.yaml",
"exec:script:generate-migration": "./scripts/shell/generate-migration.sh",
"exec:eslint": "eslint --cache",
"exec:prettier": "prettier",
"lint:eslint": "yarn exec:eslint --cache-file $(pwd)/.eslintcache $(pwd)",
"lint:eslint:fix": "yarn lint:eslint --fix",
"lint:markdown": "markdownlint -c markdownlint.yml $(find . -name '*.md' -not -path './node_modules/*' -not -path './.yarn/*' -not -path './terraform/.terraform/*')",
"lint:prettier": "yarn exec:prettier --config .prettierrc --ignore-path .prettierignore --no-editorconfig --check src/**/*.ts",
"lint:prettier:fix": "yarn exec:prettier --config .prettierrc --ignore-path .prettierignore --no-editorconfig --write src/**/*.ts",
"lint": "yarn lint:eslint && yarn lint:markdown && yarn lint:prettier",
"lint:fix": "yarn lint:eslint:fix && yarn lint:prettier:fix",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"sdk": "yarn dlx @yarnpkg/sdks vscode",
"start:dev": "rimraf dist && yarn db:start && yarn copy:assets && webpack --config webpack-hmr.config.js --watch",
"start": "node dist/index.js"
},
"dependencies": {
"$": "link:./src",
"auth0": "^2.42.0",
"axios": "^0.27.2",
"boom": "^7.3.0",
"class-transformer-validator": "^0.9.1",
"class-validator": "^0.13.2",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-oauth2-jwt-bearer": "^1.1.0",
"express-openid-connect": "^2.7.1",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.45"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/auth0": "^2.35.2",
"@types/boom": "^7.3.2",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.43",
"@types/webpack-env": "^1.17.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^3.2.5",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-ordered-imports": "^0.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^43.0.1",
"husky": "^8.0.1",
"markdownlint-cli": "^0.31.1",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"run-script-webpack-plugin": "^0.1.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.8.2",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-pnp-externals": "^1.1.0"
},
"packageManager": "[email protected]"
}